This is a discussion on "help with pagination and html radio buttons" within the PHP Forum section. This forum, and the thread "help with pagination and html radio buttons are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
help with pagination and html radio buttons
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
help with pagination and html radio buttons
Can anyone please help me insert this line of html and javascript into my php code?
I have a radio button which when clicked will open deletenews.php I want to put that in the php code so every record will have the radio button next to it so it can be deleted.
I am sure it's the $code->title part causing the error and don't know how to get around it Here is the entire script that works correctly before any changes have been made.
|
|
|
|
#2
|
|||
|
|||
|
Re: help with pagination and html radio buttons
while($code = mysql_fetch_object($q)) {
echo("<h3><input style=\"border:none;\" type=\"radio\" name=\"loc\" onClick=\"go(\'index.php?page=deletenews\');\">".$code->title."</h3><BR>"); } Should work fine, if you want to delete a certain title only you will need to pass that in the javascript function as well probably dont forget. Good luck. |
|
#3
|
|||
|
|||
|
Re: help with pagination and html radio buttons
Thanks.....that works fine for another page I'm doing where there is no deleting etc but how do i delete a certain item
I have tried this
Is it to do with the \'deletenews.php?id=<? echo $code[\'id\']; ?>\' bit? if so how do i replace it correctly? Many thanks for helping me sort this problem |
|
#4
|
||||
|
||||
|
Re: help with pagination and html radio buttons
replace that line with:
|
|
#5
|
|||
|
|||
|
Re: help with pagination and html radio buttons
I did what you said and now I get the error message syntax error, unexpected $end
|
|
#6
|
||||
|
||||
|
Re: help with pagination and html radio buttons
I suspect one of the unescaped double quotes.
|
![]() |
| Tags |
| help, pagination, html, radio, buttons |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [SOLVED] Help with Radio buttons | Oak | JavaScript Forum | 17 | Feb 2nd, 2008 09:44 |
| Radio Buttons and Javascript | activeware | JavaScript Forum | 6 | Dec 11th, 2007 18:02 |
| Radio Buttons data through email | gomab2 | Flash & Multimedia Forum | 1 | Aug 22nd, 2006 01:19 |
| Radio buttons and mandatory fields | joshcxa | JavaScript Forum | 1 | Aug 8th, 2006 10:30 |
| Radio Buttons | redhead | Web Page Design | 2 | Apr 12th, 2004 19:00 |