I'm just taking a wild guess...

but I'm guessing that if you set a name with spaces, it'll be replaced with "_"(underscore).

A couple of ways around this is to
1) figure out a way to assign a one-word name for all your books(e.g. Code, ID number, etc.) 2) generate a hash code(e.g. md5($row['LITERATURE_title'])) will generate a one word(no spaces).

If this is going to be a library application, you can always use "ISBNXXXXXXXXX"(no spaces, no dashes), since the idea is that every book has a unique ISBN number....

Johan Grobler wrote:

while ($row = mysql_fetch_array($sql_result))
{
echo"<Form name=\"".$row['LITERATURE_title']."\" action=\"searchlit.php\" 
method=\"post\">
<font face=\"arial\" size=\"2\">
<a href=\"javascript:".$row['LITERATURE_title'].".submit();\" >".$row['LITERATURE_title']." - 
".$row['res_fname']." ".$row['res_lname']."</a>
...

Everything works as long as $row['LITERATURE_title'] is one word, see this variable contains the 
names of books, and if the books name is "Heaven" for instance it works fine but as soon 
as the title is something like "PHP for Dummies" it doesnt work and i get a error on page 
message, I tried using numbers as the form name but then the same thing happens.

Any ways around this?

thanx
--------------------------------------------------------------------
Disclaimer This e-mail transmission contains confidential information,
which is the property of the sender.
The information in this e-mail or attachments thereto is intended for the attention and use only of the addressee. Should you have received this e-mail in error, please delete and destroy it and any attachments thereto immediately. Under no circumstances will the Cape Peninsula University of Technology or the sender of this e-mail be liable to any party for
any direct, indirect, special or other consequential damages for any
use of this e-mail.
For the detailed e-mail disclaimer please refer to http://www.ctech.ac.za/polic or call +27 (0)21 460 3911


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to