This is buggin' me SO bad I want to curse!!
I'm trying to write a simple registration page. but PHP is editing generated text. for example
comes out as
$regnoti is set to either nothing, or checked="checked", depending on if client the submitted the form with this check box 'checked' or not.
My point is, PHP is rearranging the settings for my check box, and it's removing my '/' at the end of the input... It's like there's some stupid htmltidy function turned on in PHP to make up for stupid programming... well it's screwin' up my script writing. garr
edit:k i'm calm now... I found the phpinfo thing and i'm lookin through it now...
edit by Rvec: Please do not doublepost, you can use the edit button to edit your post.
I'm trying to write a simple registration page. but PHP is editing generated text. for example
| Code: |
| <input type="checkbox" name="8" <?php echo $regnoti; ?> /> |
comes out as
| Code: |
| <input name="8" checked="checked" type="checkbox"> |
$regnoti is set to either nothing, or checked="checked", depending on if client the submitted the form with this check box 'checked' or not.
My point is, PHP is rearranging the settings for my check box, and it's removing my '/' at the end of the input... It's like there's some stupid htmltidy function turned on in PHP to make up for stupid programming... well it's screwin' up my script writing. garr
edit:k i'm calm now... I found the phpinfo thing and i'm lookin through it now...
edit by Rvec: Please do not doublepost, you can use the edit button to edit your post.
