Hello,
I am a newie to Php needing some help pls. I have been using my local computer to create a file that stores pictures to the sql database in my local drive that is sent to another php page to display stored images. The post command is as follows:
form that post image to database*****************
<Form Method="post" action="store.php" ENCTYPE="multipart/form-data">
** file that stores to database*
<?php
$session = mysql_connect("localhost", "", "");
mysql_select_db("my_database");
there is then a file that retrieves all and displays data that i stored.
however as i am trying to upload to my the hosting server i seem to keep getting this error as soon as i click the button to submit.
The requested method POST is not allowed for the URL /*****/Testing/store.php.
Apache/1.3.26 Server at homepage.ntl.com Port 80
does anyone know how i edit my post and store file so it can be configured for the hosting site?do i actually need to ftp my database across to the host too?
thanks for yr help..