Beginning MySQL Tutorial One of the fastest SQL (Structured Query Language) database servers currently on the market is the MySQL server, developed by T.c.X. DataKonsultAB. MySQL, available for download at http://www.mysql.com, offers the data base programmer with an array of options and capabilities rarely seen in other database servers. What's more, MySQL is free of charge for those wishing to use it for private and commercial use.
| Name: |
Brad H. |
| Subject: |
Re: Problem with Blob and php3 |
| Date: |
07-24-2000 07:15PM |
Yes i did find the problem. For some reason if the text contains a "'" (without the qouotes) it fails. php3 sees that as part of the script and fails. The solution i used is to replace those wih the following:
$resume=ereg_replace("'","`",$resume);
(resume is the name of the blob.)
I was told that this solution will also work if you replace the "'" with its ascii equal, but i have not got around to pulling out my ascii info to look it up and no one notices the difference in their resume anyway :)
Hope that helps.
Brad
|
Other posts in this thread:
Reply to this post:
|
 |
Visit the MySQL Forum!
New On DevShed:
Hot Forum Topics:
|