Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~762 People Reached
Favorite Forums
Favorite Tags
php x 6
asp x 1
Member Avatar for okonjiaustin

I am building a website that uses php5 and mysql database. I want to upload images alongside other information. To get other information into the table of the database, this I can do very well, but to upload and display the images alongside other information(which may be done online by …

Member Avatar for janani26
0
183
Member Avatar for okonjiaustin

I have successfully uploaded image to mysql database using a form: This is the code: <?php $errmsg = ""; if (! @mysql_connect("localhost","root","")) { $errmsg = "Cannot connect to database"; } @mysql_select_db("adim"); if(isset($_REQUEST)) { $imgtype=$_FILES; $name=$_REQUEST; $address=$_REQUEST; $dateofbirth=$_REQUEST; if($imgtype=="image/jpeg" || $imgtype=="image/jpg" || $imgtype=="image/pjpeg" || $imgtype=="image/gif" || $imgtype=="image/x-png" || $imgtype=="image/bmp") { $image=$_FILES; …

Member Avatar for nav33n
0
167
Member Avatar for okonjiaustin

I have successfully uploaded images into mysql database, but now I want to display the images alongside other row data in html page. Thanks for your previous help. Austin.

Member Avatar for nav33n
0
136
Member Avatar for okonjiaustin

I have IIS running on my MS windows 2000 professional, but it seems I have been unable to configure my web server to be able to run ASP correctly. Please kindly give me a step by step guide to be able to do this well. Thanks. Austin Okonji.

Member Avatar for samaru
0
276