Search the Community
Showing results for tags 'double quotes'.
-
I have an html form that inserts a record into database. I also have a an html edit form that retrieves the data from the database. Normally everything works. But I just noticed that I have an issue if I use double quotes in the form field. It'll insert into the database fine. The problem arises when outputting the variable in the form field. If I echo it outside the form field, it'll show up fine with the double quotes. But inside the field, I only geta partial string. For eg. $variable_input = '5 3/4" Glitter Concealed Platform Pump'; The above will insert to the database. But if I retrieve it in the form field below, it'll return with one number only. <input type="text" name="title" value="5" /> Is there a way to fix the variable output of the wording that includes the double quotes?
- 1 reply
-
- double quotes
- data
-
(and 3 more)
Tagged with:
-
how do i echo out this html? <a href="#login" onclick="popup('popUpDiv')">Login</a> in php i tried: echo '<a href="#login" onclick="popup('popUpDiv')">Login</a>'; but that doesnt work because of 'popUpDiv', i tried arrays, it still doesnt seem to work echo "<a href='#login' onclick='popup("."'popUpDiv')'>Login</a>" i must be doing something wrong