Ok two questions actually... one can I have someones PHP.ini because I dont think I have the right stuff enabled to get all the common stuff working well 😉 plz help (win XP, apache and MySQL)
The big one: how to get to upload a file WITH a form requesting imputs, this is what I have so far: Ive played with it to no avail.. the second page isnt important because I cant get data to transmit right :-/ thx!
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<br>
<form action="processintotableFAKE.php" method="post">
Enter Fake Name:<br>
<input type="text" name="fakenames"><br>
Enter Real Name:<br>
<input type="text" name="realnames"><br>
Choose Your Sex:<br>
Male:<input type="radio" name="sex" value="male" checked>Female:
<input type="radio" name="sex" value="female"><br>
Enter Your Email:<br>
<input type="text" name="email"><br>
Choose a password:<br>
<input type="password" name="password"><br>
Select Profile:<br>
<input type="file" name="uploadedFile">
<br>
<p>
<input type="submit" value="Send Your File!"><br>
<input type="reset" value="Reset Form">
</form>
</body>
</html>