top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to generate images dynamically on the other pages in php?

+1 vote
281 views
How to generate images dynamically on the other pages in php?
posted Nov 15, 2014 by Vrije Mani Upadhyay

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Since the header can be sent only once and it is the only way to tell the browser that you are going to send image, it is not so easy to insert automatically generated images to the regular pages. There are three ways to do it:

  • The whole page can consist of the image.
  • You can save image in the file and then refer to it using < img>HTML
    descriptor.
  • You can put a script producing image in HTML descriptor,
    Example:-

    < img height="120" alt="Dynamically generated image" src="generate_image.php" width="200">

answer Nov 29, 2014 by Rajneesh
Similar Questions
+1 vote

Any free tool (like Dreamweaver) to generate HTML pages?

+1 vote

I have just started learning PHP. So Can anyone tell me that How many methods are there to pass the variable through navigation between the different pages ?

0 votes

I want to use session to pass variables through pages using php.
Site structure is:
1. header.php
2. column.php
3. footer.php
4. index.php
Pages 1, 2 & 3 are included into the index.php.

In header.php page, there is a drop down, in which links(cities) are placed where users will select city.
Now, I want to do code to store selected values into a variable and pass to multiple pages.

Please help on this..

...