Forum Moderators: coopster
thanks for your help!
Psycho
[edited by: jatar_k at 4:40 pm (utc) on April 4, 2004]
[edit reason] removed url [/edit]
than anser is in the php code not the flash
BTW
It is against our rules to post a personal site link
FR: Desole, c’est la facon de proceder que nous avons tous adopte sur ce forum
My flash knowledge is very much close to zero
I believe that only the PHP part of it causes the problem
is there a limit in text display?
We should look at the PHP script section that displays the text
Are you using flat files or a DB
Could you ask your friend about its design
if the code comments are in FR
I will do the translation for other members to look at
thanks
<Henry's edit: typo>
if you wish you may zip the whole thing
and send me the package through our forum email system
Problem:
I wil be away from my machines for about 36 hours
I mentioned to post only the PHP script section that regards the output so every one may look at it which is the forum purpose
If you do not know which one does the job
I will try to find it and post it (from your zip file)
in order for all to look at your problem
The PHP part is quite straightforward
And the WSF file is not attached
After looking at the guest book I reverse my thoughts and guess (I know one should not guess!) that the flash part is the reason for your text display problem
You might want posting the same question in a another forum than the PHP one.
Here is the small code section concerned
<<<<
/* For each table entry returned... */
while($row = mysql_fetch_array($result)) {
/* Create human readable date from timestamp */
$entryDate = strftime("%A %d/%m/%y", $row['entryDate']);
/* Add details to output variable */
print "<b>Date:</b> " . $entryDate . "<br>";
print "<b>Name:</b> " . $row['name'] . "<br>";
print "<b>Email:</b> " . $row['email'] . "<br>";
print "<b>Location:</b> " . $row['location'] . "<br>";
print "<b>Gender:</b> " . $row['gender'] . "<br>";
print "<b>Comments:</b> " . $row['comment'] . "<br><br>";
/* Close link to MySQL */
mysql_close($link);
?>
>>>>