the code involved is:
$other = "in reply to <a href=\"$orig_id.$settings[extension]\">$orig_subject</a> posted by $orig_name on $orig_date";
createNewFile($name,$mail,$subject,$comments,$count,$date,$other,$orig_id);
i am trying to make it:
$other = "in reply to <a class="classid" href=\"$orig_id.$settings[extension]\">$orig_subject</a> posted by $orig_name on $orig_date";
createNewFile($name,$mail,$subject,$comments,$count,$date,$other,$orig_id);
but i get a script error and everything stops working
please help!
probably with class
probably with class
[b][color=red][url=http://ilumu.com]UK Website Design Specialists - ILUMU.COM[/url][/color][/b]
You have to escape your double quotes like is done with the href in that line.
The code should look like
Greetings,
Henrie
The code should look like
Code: Select all
$other = "in reply to <a class=\"classid\" href=\"$orig_id.$settings[extension]\">$orig_subject</a> posted by $orig_name on $orig_date";
createNewFile($name,$mail,$subject,$comments,$count,$date,$other,$orig_id);
Greetings,
Henrie