Announcement

Collapse
No announcement yet.

Does Product have Duplicates

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    why dont you make it say:

    PHP Code:
    $blreturn true
    this way, you can use it in your page like this:

    PHP Code:
    if(FergsCondition(ProdRef))
    {echo 
    "<div class=\"myclass\"><div>";}
    else {echo 
    "";} 
    remember: when you use php to display html, you need to escape any speechmarks

    i think actinic supports breaking out of the php and back in?

    devs? will this type of structure work?

    PHP Code:
    <?
    some php loop 
    {
    ?>
    some html repeated...
    <?
    }
    ?>

    Comment

    Working...
    X