pbalsamo Posted October 27, 2008 Share Posted October 27, 2008 Please help I am stuck on how to click checkbox and put area code in text field <?php $array1 = array("(516)","(631)","(718)"); ?> <td><input name="Phone" type="text" value="<?php echo $array1; ?>" size="15" /> <input name="RadioGroup1" type="radio" id="RadioGroup1_0" onclick="<?php echo $array[0]; ?>" value="" checked="checked" /> <label>(516)</label> <input name="RadioGroup1" type="radio" id="RadioGroup1_1" onclick="<?php echo $array[1]; ?>" value="" /> <label>(631)</label> <input name="RadioGroup1" type="radio" id="RadioGroup1_2" onclick="<?php echo $array[2]; ?>" value="" /> <label>(718)</label><br /> <label>(###)###-####</label> </td> Link to comment https://forums.phpfreaks.com/topic/130263-array-help/ Share on other sites More sharing options...
sammeh Posted October 27, 2008 Share Posted October 27, 2008 your trying to out put php with onclick. This generally for a javascript function. write a javascript function and then call the javascript function on call/ Link to comment https://forums.phpfreaks.com/topic/130263-array-help/#findComment-675519 Share on other sites More sharing options...
DeanWhitehouse Posted October 27, 2008 Share Posted October 27, 2008 Please use code tags Link to comment https://forums.phpfreaks.com/topic/130263-array-help/#findComment-675520 Share on other sites More sharing options...
pbalsamo Posted October 27, 2008 Author Share Posted October 27, 2008 Somebody please help Link to comment https://forums.phpfreaks.com/topic/130263-array-help/#findComment-675685 Share on other sites More sharing options...
sammeh Posted October 28, 2008 Share Posted October 28, 2008 As above... You can't onclick="<?php echo bla bla ?>" onclick is reserved for javascript functions or such like..... Also your trying to echo an array... On a normal config this will not work... you'll need to manipulate the array with something like foreach() or print_r(). Explain exactly what it is your trying to accomplish!? Link to comment https://forums.phpfreaks.com/topic/130263-array-help/#findComment-676492 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.