Search results

  1. A

    Uploading ASP.net files internal server error

    hello thanks for the reply.. what are the thing i need to modify in my files? I uploaded default.aspx, default.asp.vb and web.config
  2. A

    Uploading ASP.net files internal server error

    heres the attachment
  3. A

    Uploading ASP.net files internal server error

    isnt it even if it's a free account xhosting can support asp.net
  4. A

    Uploading ASP.net files internal server error

    Hello all !!! I created an asp.net files in my local computer and I uploaded my asp.net files (Default.aspx, Default.aspx.vb, and web.config) in my public html. When i browse it in http://acellephpmysql.x10hosting.com/Default.aspx I have this error!! Internal Server Error The server...
  5. A

    Xampp cannot open Welcome Page

    How come i cannot open xamp welcome page...i have this error... Error : DNS query for "mage/gif," failed : host not found. Edit: I don't know why but when i open the welcome page in firefox it has no errors
  6. A

    Display image in MYSQL

    ok i did what you say i have this echo "<td align='right'><img src='{$Row[6]}' /></td>"; but it doesnt display the picture on the text http://acemysql.freetzi.com/images/img1.jpg
  7. A

    Display image in MYSQL

    i tried a code like this just to check <?php $username = "root"; $password = ""; $host = "localhost"; $database = "automobile_parts"; @mysql_connect($host, $username, $password) or die("Can not connect to database: ".mysql_error()); @mysql_select_db($database) or die("Can not select the...
  8. A

    Display image in MYSQL

    tried to put the header like this <?php header('Content-Type: image/jpeg'); $image_id = preg_replace('/\W.*/', '', $_GET['image']); no warning error but the image doesnt display and it displays http://localhost/xampp/Project4/get_image.php?image=APC403062CLE my APC403062CLE row is not empty...
  9. A

    Display image in MYSQL

    hello i tried...but still doesnt display.. do i need to put the code above in my index.php or in my get_image.php? I tried the above code using my localhost... i use echo $Row['bmkimage']; i have an error message : Warning: Cannot modify header information - headers already sent by...
  10. A

    localhost/php/apache

    isnt it the directory where you put your file is D:\xampp\htdocs\xampp and when you check the page is http://localhost/xampp/ your php file?
  11. A

    Display image in MYSQL

    here is the code: <?php //get_image.php // you need to sanitize it yourself $image_id = $_GET['image']; $TableName = "automobileparts"; $SQLstring = "SELECT * FROM automobileparts WHERE PartNo = '$image_id'"; require_once("dbconnect.php"); header('Content-Type: image/jpeg'); $Row=...
  12. A

    Display image in MYSQL

    i change and add ";" i have this http://acemysql.freetzi.com/get_image.php?image=APC403062CLE and it doesnt display any image
  13. A

    Display image in MYSQL

    attached is my sql fields and how i uploaded my images.. help me please
  14. A

    Display image in MYSQL

    can you show me how to sanitize?.. here is my link.. http://acemysql.freetzi.com/IndexProject.php
  15. A

    Display image in MYSQL

    it displays characters please help
  16. A

    Display image in MYSQL

    from the car info.php i just change this part to {$Row[0]}...since it's the part number id for the pictures echo "<td align='right'><img src=\"get_image.php?image={$Row[1]}\" /></td>"; and from the get_image.php i change this part id to PartNo. $SQLstring = "SELECT * FROM automobileparts...
  17. A

    Display image in MYSQL

    is it like this then ? still doesnt display..can you show me please echo "<table width='100%' border='1'>"; $Row = $QueryResult->fetch_row(); do { echo "<tr><td>{$Row[0]}</td>"; echo "<td align='right'>{$Row[1]}</td>"; echo "<td...
  18. A

    Display image in MYSQL

    it doest display can you check my code <? $TableName = "automobileparts"; $SQLstring = "SELECT * FROM automobileparts"; require_once("dbconnect.php"); header ("Content-type: image/jpeg"); echo "<table width='100%' border='1'>"; $Row = $QueryResult->fetch_row(); do {...
  19. A

    Display image in MYSQL

    hello i added a field in my table for images with field type long blob...how can i display it in my php code.. ihave this in my code: Row 6 is the field for images please help.... i have added this code to display but it doenst show any image ..thanks echo "<td align='right'><img...
Top