Hello,
Heres what i am trying to do :
I have a field with characters seperated by * and i want to count every character in the field of the table. I saw that with php 5 you can do this by adding $count. Anybody know of a work aroung for php 4?
Heres some code to make things clearer
$sql = "SELECT *
FROM jobs_new";
$result2 = mysql_query($sql, $conn)or die(mysql_error());
while ($row = mysql_fetch_array($result2)) {
$division = str_replace("*","<br>", $row['division_new']);
$display .="$division<br>";
Thanks in advance