Forum: PHP 30 Days Ago |
| Replies: 15 Views: 433 It happens to the best of us ;) |
Forum: PHP 30 Days Ago |
| Replies: 15 Views: 433 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 32 Days Ago |
| Replies: 4 Views: 248 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 Nov 10th, 2009 |
| Replies: 4 Views: 287 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: 321 try using str_replace
<?php
$source = "string with • ";
$newString = str_replace("•", "", $source);
that should work |