reload php-image

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • julian_m

    reload php-image

    I've, inside an html page, an image which is created through a php file
    :


    <img src="<?php echo 'captcha.php'; ?>">

    file captcha.php, sends
    header("Content-type: image/png");

    All works fine, but I need to reload the image (a new captcha code
    should be generated) without reloading the enitre page. Are there any
    solution? I'll post a similar question in javascript forums

    I'm working on a "post comment" form using ajax.

    regards - julian

  • flamer die.spam@hotmail.com

    #2
    Re: reload php-image


    julian_m wrote:
    I've, inside an html page, an image which is created through a php file
    :
    >
    >
    <img src="<?php echo 'captcha.php'; ?>">
    >
    file captcha.php, sends
    header("Content-type: image/png");
    >
    All works fine, but I need to reload the image (a new captcha code
    should be generated) without reloading the enitre page. Are there any
    solution? I'll post a similar question in javascript forums
    >
    I'm working on a "post comment" form using ajax.
    >
    regards - julian
    No not without refreshing the page, js is the only way, also why do you
    have php echo ""; in the image tag, couldn't you just have <img
    src="captcha.ph p"thats what I do.

    Flamer.

    Comment

    Working...