Jump to content

eatfishy

Members
  • Posts

    82
  • Joined

  • Last visited

    Never

Everything posted by eatfishy

  1. I am not a PHP expert, but I do know cookies are stored on client side, which is eaiser to hack. I thought session variables are stored on the server, so it'll be much more difficult to hack.
  2. str_replace("’", "'", $string) which works fine except when using $_POST['string']. Did you try to change $_POST['string'] to $_POST["string"] ? Incase the text encoding for that apostropes is read as a single quotation, using double quotation will not distort your string in your example.
  3. From my understanding, it sounds like you just want to update the table with the scores after when 2 teams play against each other without manually typing it in the HTML editing form? Since the table is setup and you added records into it, but you want to go back and edit the record (put the actual score in). You need to do an update statement in MySQL. mySQL statement ex: Update TableName Set ColumnName='70-20' WHERE Game='Bears Vs Tiger' --or use GameID='25' Something similar to the query above. Get it to work in MySQL first and then PHP. I can be found at www.blogoberry.com if you need more help
  4. NetBean is another choice for PHP IDE, but not sure if it's as good as dreamweaver.
  5. If you would like the value to be pass onto the next page, you can use session variable for that. Ex: $_SESSION['name']=$_POST['name'];
  6. Thanks for the fast response. I have read the PHP manual, but it wasn't too clear to me on subject about uploading with login. I figured out what the problem was, which really is the configuration of the php.ini setting. I need to change the temp directory in the php.ini and also include that temp directory in my ftp directory path. Hope this helps others as well. Express who you are in www.blogoberry.com
  7. Below is a script that I have to upload files onto my website. The message shows that image is uploaded, but when I check folder, I don't see any images in there. I am not getting any error messages either. Please help me. Thanks. <?php include("Session.php"); /* *************************************************************************************** *************************************************************************************** */ //prepare a form similiar to this and have it call the below file //echo '<form action="image_upload.php" method="post" enctype="multipart/form-data">'; //echo 'Click the Browse button to find the file you wish to upload'; //echo '<input type="file" name="imagefile">'; //echo '<input type="submit" name="upload" value="upload">'; //echo '</form>'; /************************************************************************************** *************************************************************************************** *************************************************************************************** *** <input type="file" name="imagefile"> *** *** with the above tag declared in the calling form *** *** the variable name is $imagefile and the available properties are *** *** $imagefile :name of the file as stored on the temporary server directory *** *** $imagefile_name :filename.extension of the file as on the users machine *** *** $imagefile_size :size in bytes of the file *** *** $imagefile_type :the type of file image/gif image/jpg text/html etc.... *** *** *** *************************************************************************************** *************************************************************************************** */ //change these values to suit your site $ftp_user_name='username'; $ftp_user_pass='password'; $ftp_server='ftpserver; $ftp_dir='ftpdirectory'; //$web_location is needed for the file_exists function, the directories used by FTP //are not visible to it will will always return not found. $web_dir='websitedirectory'; $web_location=$web_dir.$imagefile_name; //build a fully qualified (FTP) path name where the file will reside $destination_file=$ftp_dir.$imagefile_name; // connect, login, and transfer the file $conn_id = ftp_connect($ftp_server); $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); $upload = ftp_put($conn_id, $destination_file, $imagefile, FTP_ASCII); //use ftp_site to change mode of the file //this will allow it be visible by the world, $ch=ftp_site($conn_id,"chmod 777 ".$destination_file); // close the FTP stream ftp_close($conn_id); //verify file was written if (file_exists($web_location)) { echo "File was uploaded as $web_location"."<br>"; echo error_reporting(E_ALL); } else { echo "Could not create $web_location"; } //end if ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.