Hey guys,
I set a variable like this to display a button
$var = "<input type=button etc..>";
now I really need to use double quote inside this button but can't see how to write it???
Should be
$var = "<input type=button name="the button">";
I need the double quote as i include some javascript so how do i do this?
s
urgent quick fix!!!
Moderator: General Moderators
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
Code: Select all
$var = '<input type="button" name="the button" />';
// or
$var = "<input type="button" name="the button" />";