Forum: PHP 11 Days Ago |
| Replies: 15 Views: 371 It happens to the best of us ;) |
Forum: PHP 12 Days Ago |
| Replies: 15 Views: 371 As much as I try and aviod overposting more experienced and respected posters, if you remove the [] that will only let you select 1 of the checkboxes and not multiple. If you want multiple You need... |
Forum: PHP 13 Days Ago |
| Replies: 4 Views: 205 They are normaly done in HTML.
<html>
<body>
<select name="menu">
<option value="opt1">Option 1</option>
<option value="opt2">Option 2</option>
<option... |
Forum: PHP 19 Days Ago |
| Replies: 4 Views: 220 I am a little confused to what you are asking but I think you might mean.
//your code is put into an if statement
<?php if (!mysql_query("$sqlcommandvariable")) die(mysql_error()); ?>
//... |
Forum: PHP Aug 26th, 2009 |
| Replies: 7 Views: 311 try using str_replace
<?php
$source = "string with • ";
$newString = str_replace("•", "", $source);
that should work |