Posts

Showing posts from June, 2016

PHP School

Image

How to upload and display image from database using php mysql oops concept.

Image
index.php <?php  include './classes/image_class.php'; $obj_image = new Image(); if(@$_POST['Submit']) { $obj_image->image_name=str_replace("'", "''", $_POST['txt_image_name']); $obj_image->image=str_replace("'", "''", $_POST['txt_image']); $obj_image->Insert_into_image(); $data_image=$obj_image->get_all_image_list(); $row=mysql_num_rows($data_image); } ?> <!DOCTYPE html> <html> <head> <title>NOvaeye </title> </head> <body> <CENTER><H1>Novaeyewear</H1></CENTER> <CENTER><H2>Sunglass</H2></CENTER> <CENTER> <form method="post" enctype="multipart/form-data"> <table border="1" width="80%"> <tr> <th width="50%">IMage NAme</th> <td width=&qu