
ron8000
Members-
Posts
38 -
Joined
-
Last visited
Never
Everything posted by ron8000
-
You would be correct. $mail->WordWarp = 50; Don't know if that would throw a 500 error tho... but check it out!
-
I'm not sure what to tell you, but everything looks good.
-
Hello everyone, I'm creating an AJAX Select Box filter for a project, I am using Prototype (latest ver) My goal is when a user makes a selection the JS will send a request to a script and send 1. A formated list of all the select fields 2. The name of the field that was changed. 3. The value of the field that was changed. I've got the php script done, and at the moment to output either. 1. name=value&name=value 2. JSON formated object My issue lies in pulling the vaues by a JS Var. function filterRequestReturn(requestResponse) { var info = requestResponse.responseText; /* For JSON */ var ajax_return = evalJSON(true) /* For the name=value&name=value var ajax_return = info.split('&'); */ var filter_fields = jsFilter.split("-"); filter_fields = filter_fields.without(''); for(var i=0;i<filter_fields.length;i++) { alert(ajax_return.filter_fields[i]); } var oXY2=$('myTestDiv'); oXY2.style.zIndex = '140'; oXY2.innerHTML=ajax_return.total; oXY2.show(); } The line alert(ajax_return.filter_fields); will not work... is there a way to pull values form a JSON object using a var?
-
If you are getting an error 500 then you need to check your log files to see what happened. If you have cPanel they will be in there as Error Logs and see what caused the error.
-
you need to make sure that the language dir is there as well, and if you can post your error message that you are getting that would help tons.... if you are not getting one then at the very top of the script insert the code below. <?php error_reporting(E_ALL); ?>
-
I have done the whole 9 yeards on this site, but i need to know if it's anywhere up to par. Please let me know what you think, functionality, look, flow, all comments are welcome! http://www.hotstuff-fashion.com Thank you!
-
Yes, when you download the phpMailer and extract it if you put the script i posted into that same dir it should work. You may need to change some things as far as vars go but that's it. Let me know if you need more then that.
-
I posted this for another question but you may find it useful as well.
-
This is a function from my DB class that is what you are looking for. <?php public function dbGetFields($table) { $this->error = FALSE; $query = "SHOW COLUMNS FROM ".$this->dbFormat($table); $result = $this->dbQuery($query); if(!$result) { return FALSE; } for($i=0;$i<mysql_num_rows($result);$i++) { $row = mysql_fetch_assoc($result); $fields[$i] = $row['Field']; } return $fields; } ?> Enjoy Let me know if it works!
-
Welcome to PHP! Its great stuff! Now there are lots of recources out there to help you on your way. To this day PHP.net is my best rescource for functions and general language questions. Now on this that your are doing now. I will suggest this. 1. Start with a login form, where the user will input the username and password. 2. Post it to the same page, and then run the query -> "SELECT FirstName,data FROM Members WHERE username='" . $_POST['username'] . "' AND password ='" . $_POST['password'] . '" LIMIT 1" Then once you have a result you can load all of the data into the session vars that you need. <?php $result = mysql_query("SELECT FirstName,data FROM Members WHERE username='" . $_POST['username'] . "' AND password ='" . $_POST['password'] . '" LIMIT 1"); if(!$result) { echo mysql_error(); } else { $row = mysql_fetch_array($result); $_SESSION['FirstName'] = $row['FirstName']; } ?> Now just to note this script is missing alot of stuff but you will be able to get the basic understanding I think... Let me know if you have any questions. and again Welcome to PHP!
-
I am going to have to suggest a PHP Mailer class that I have been using for some time now. It's VERY fast and has yet to let me down. http://phpmailer.codeworxtech.com/ This is a VERY extensive class and has lost of room to add if you are in to that but the basic idea will get you started and emailing in PHP fast and easy. Here is a basic example of how to send an HTML email. <?php require("class.phpmailer.php"); $mail = new PHPMailer(); $mail->ClearAddresses(); $mail->AddAddress($_POST['email']); $mail->FromName = "My Name"; $mail->FromAddress = "[email protected]"; $mail->IsHTML(true); $mail->WordWarp $mail->Subject = "Thank you!"; $body = "<div><h4>My Title!</h4></div>"; $body .= "Thank you Info what not here blah blah<br><br>"; $body .= "<p>Your Var = ".$myVar."</p>"; $this->Body = $body; if($mail->Send() !== false) { echo "YAY WE DID IT!"; } else { echo "Jump!"; } ?> I hope this helps you!
-
I depends on how the password was crypted to begin with. For example if you used the PASSWORD('mypass') function in mySQL then you would use the same thing to match it. If you used a scripting crypt like md5 or sha1 then you would crypt the pass and query for the crypted pass and match them. Hope this helps "SELECT * FROM users WHERE password=PASSWORD('mypass') LIMIT 1" or <?php $password = mysql_real_escape_string(md5('mypass'))); "SELECT * FROM users WHERE password='".$password."' LIMIT 1" ?>
-
I'm not sure you are following. 1. When you define a auto-increment field it will ALWAYS give a unique id. 2. When you are trying to make things relitave to another there HAS to be a common ground between the two. a simple solution to your problem is to give the table a new field called session_id. use that to store the session_id() when the file is uploaded. this will give you a way to get the files form the same user. this will also on the other hand, if a user is uploading more then one quote at durring any given session the id will be the same and not work for you. there is still hope with this method tho, if you destory the session and generate a new session_id when the form is completed, you will not have that problem. ^^ let me know if we are making progress! Learning is hard but the rewards are GREAT!
-
my suggestion is to use the session id as your unique id... this is not the best method imo but it's the easiest another suggestion is to crate a table with 1 col for each file and file info that you want to store So both files form one person will go in one row and you can just set a max number of files and make that the max number of fields in the db... Other then thos 2 suggestions you need to create a user system that will give them an id and you can use that id form the user table and ref it like that So joe signs up for w/e and he's given a login or just a code w/e he uses that to upload the times and you can ref him in the user DB as the sender of the files... If this is not clear just let me know and i'll see if i can't clear it up for you
-
Just wanted to know if you are still having probs, sorry about this morning needed to get at least an hr of sleep still got a lot of work to do very busy building a GUI framework but just post and let me know if you still need help
-
Post a <?php var_dump($_FILES); ?> So i can see what's in your $_FILES array
-
This is whre you may need to check into your PHP ini settings 1st make sure that file uploads are on... after that I'm not sure... never ran into that problem... Now it also looks like the file may already be there... did you check that?
-
Then it's prob done and you can turn off error_reporting(E_ALL) just comment it out and see what happens
-
ok very easy just after your <?php $table = ''; ?> just add a <?php $upload_feedback = ''; ?> Some pointers for running in E_ALL on all the time, it is VERY strict. This is a fine example if you try to use a Var w/o defining what it is or giving it a value, it will error out... you should always use isset or empty or is_array or w/e to verify your data is what you want it to be... but enough about that let me know if that works for you.
-
why not just loop thru the $_FILES and just run the upload function on each item... but to do this you should prob remove the hand coded field value. You pass a var to the function anywhay called $file. So maybe something along the lines of <?php $dest = 'my/upload/path'; if(isset($_FILES) && !empty($_FILES) && is_array($_FILES)) { foreach($_FILES as $file) { $upload_msg[$file['name']] = move_upload($file, $dest); } } ?> As far as that function goes... not sure but you can try this <?php function move_upload( $file, $dest, $overwrite = false ) { if ($file["error"] == UPLOAD_ERR_OK) { if(!file_exists( $dest.$file["name"] ) || $overwrite) { if(move_uploaded_file( $file["tmp_name"], $dest.$file["name"] )) { $upload_feedback .= "The file " . $file["name"] . " was successfully uploaded"; $error = FALSE; } else { $upload_feedback .= "The file " . $file["name"] . " could not be moved"; $error = TRUE; } } else { $upload_feedback .= "The file " . $file["name"] . " already exists, please check the overwrite option if you wish to replace it"; $error = TRUE; } } else { switch ($file["error"]) { case UPLOAD_ERR_INI_SIZE: case UPLOAD_ERR_FORM_SIZE: $upload_feedback .= "The file " . $file["name"] . " is to large to be uploaded<br />"; $error = TRUE; break; case UPLOAD_ERR_PARTIAL: $upload_feedback .= "The file" . $file["name"] . " was interrupted while uploading, please try again<br />"; $error = TRUE; break; } } return array( "error" => $error, "feedback" => $upload_feedback ); //return message plus error status } /* All of the uploaded images */ $attachment = $file['name']; /* Call the function to move the files */ move_uploaded_file($file['tmp_name'],"http://fortwayneanodizing.com/image/upload/".$file['name']) ; ?> <?php mysql_query("INSERT INTO `upload` (`attachment`) VALUES('{$attachment}')") or die(mysql_error()); ?>
-
There is no file field named attachment eg. <input name="attachment" type="file" /> if the rest of the code is good then it should work after that
-
Now i'm not able to see line numbers but from what i can ready Notice: Undefined index: attachment in /home/anodizi/public_html/image/upload2.php on line 70 I believe this is your line 70? -> $attachment = $_FILES["attachment"]; this would mean that in the $_FILES array there is no attachment item so there was no field w/ the name 'attachment' used or were not posted. and you should change your _files and files_ both to $_FILES I always use the $_FILES array when i work with file uploads.
-
At the top of the file you have posted add a line <?php error_reporting(E_ALL); ?> This should report all errors to you. Also check the save to path to make sure it's a there and b able to have files written to it.
-
Sorry about that it's the {,} i never used it empty like that and yes it does not work. <?php $reg_exp = '/^[a-zA-Z0-9 ]*$/'; ?> [\code] notice the space in the [ ] and the * the space in the [ ] will allow for a white space char if you do not want any white space, remove it and it will not match if there is a space char. The * allows for 0 or more of the [ ] items. Sorry for the crazyness, but I strongly suggest that you read up and have at least a basic understanding of Regular Expressions. They can be extreamly useful!
-
A good start and rescource is http://www.w3schools.com/php/php_forms.asp