Tuesday, 27 August 2013

Upload photo without page redirect

Upload photo without page redirect

I have created two file name uploadPhoto.php, and userinfo.php. The code
for uploadPhoto.php file
<html>
<head>
</head>
<body >
<h2 align="center">File Upload</h2>
<form action="userinfo.php" method="post">
<table align="center">
<tr>
<td><label for="name">Name:</label></td>
<td><input type="text" name="name" id="name" /></td>
</tr>
<tr>
<td><label for="file">File:</label></td>
<td><input type="file" name="file" id="file" /></td>
</tr>
<tr>
<td><label >Image:</label></td>
<td><img src="" style="max-width:100%;"></td>
</tr>
<tr>
<td><input type="button" name="upload" value="upload" /></td>
<td><input type="Submit" name="submit" value="Submit" /></td>
</tr>
<table>
</form>
</body>
</html>
I am trying to save user information like name, photo. I want to upload
photo without page reload on upload button and then save the information
name and image in database. Thanks in advance.

No comments:

Post a Comment