Jump to content

barneyf

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Everything posted by barneyf

  1. After much research, I determined that the only way to display the image is with the HTML <img src="...."> tag. This can either call a separate PHP script, or you can embed a small image (ie icon sized) as a URL embedded image. So I use the $_SESSION global to hold the data while waiting for the user's browser to call the PHP page defined in the <img src="....." > tag.
  2. I have an intranet application where I want to embed database driven XY graphs in a web page. I have a PHP script ("master.php") that generates the HTML output consisting of a mixture of HTML tables and graphs. Currently master.php writes out an IMG tag that uses graph.php as the data source. graph.php generates the PNG image via the GD library. This XY graph will have 1000 points per line and could have 20 or 30 lines so lots of data. This works OK if graph.php pulls the data from the database. But... I don't want to have graph pull the database info, I want master.php to pull the data, massage it, and pass it on to graph.php as a 2D array. This keeps all of my database queries & data massaging in master.php. All graph.php should do is take the array and generate a PNG image for the graph. I am looking for suggestions on how master.php can pass the data on to graph.php and prefer not to use GET (too much data) or a file (too slow). Using SESSION would work, but seems like overkill as I don't need to keep the data once it is passed on to graph.php. Any elegant solutions to this situation? If I could make graph.php an object and have the IMG tag call one of it's methods, that would be elegant. But so far I haven't found a way to make that work.
  3. In my .PHP file, I have some inline Javascript hard coded in. The inline Javascript references functions that are contained in an external .js file which is loaded by the browser. Eclipse-PDT is flagging these with a red underline & red bar on the right side of the editor window with the notation that the function is undefined. Is there any way to tell Eclipse-PDT about the external file so the red marks go away?
  4. I am building an application where PHP will refresh the web page on user command. I have references to a CSS and JavaScript file in the head section of the document: <head> <script type="text/javascript" src="myscript.js"></script> <link rel="stylesheet" type="text/css" href="main.css" /> </head> Does the browser (FireFox or IE) re-load the CSS & JavaScript source files every time the page is re-sent? Or is it smart enough to know it already has it loaded? I am using CSS frames, not HTML frames and I am not ready to go to Web 2.0 with Ajax & etc just yet. So if the browser blindly loads the files each time, is there a simple workaround? Thanks
  5. Eclipse PDT. I use Eclipse for Java, so it is convenient to have the same IDE for PHP as well.
  6. Yep, it is the semicolon. &nbsp gives the warnings, but does not.
  7. When I use HTML entities like &nbsp Eclipse-PDT (Eclipse Ver 3.4.1, PDT Ver 2.0.0) gives me a warning. Any way of letting it know this is a legal HMTL character?
  8. I want to backup my MySQL database so I tried the phpMyAdmin Export feature to save it as SQL commands in a text file. When I looked at the SQL file the table structure was there along with inserts to restore the data. But my INNODB table key constraints were missing. I found an old forum entry that mentioned unchecking "Data" to save the constraint info. I tried it and it worked. This seems odd, having to save two files. Is this how one really backs up a database? I presume that to restore the database, I would have to import the two files as well?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.