[PHP] Re: Help me debug this

2009-04-21 Thread Patrick Moloney
Patrick Moloney wrote: Some months ago I downloaded and installed Apache, PHP and MySql. With only light use they seem to be working. I have downloaded a Test Script from the VBulletin vendor that is supposed to determine if your setup could run their product. The Test Script is php

[PHP] Help me debug this

2009-04-20 Thread Patrick Moloney
Some months ago I downloaded and installed Apache, PHP and MySql. With only light use they seem to be working. I have downloaded a Test Script from the VBulletin vendor that is supposed to determine if your setup could run their product. The Test Script is php and appears as a form that allows

Re: [PHP] Help me debug this

2009-04-20 Thread Patrick Moloney
Stephen wrote: Patrick Moloney wrote: I've tried their help forum, but they keep telling me to create an empty database. Have you tried creating an empty database? Stephen yes. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Include File Errors with Comments

2009-03-12 Thread Patrick Moloney
Andrew Ballard wrote: I do use PHP comments (probably not as much as I should), but I don't usually use HTML comments. This is partly (largely?) because HTML comments get passed on to the client which wastes (albeit usually a small amount of) extra space and bandwidth for each request, and they

[PHP] Re: Include File Errors with Comments

2009-03-11 Thread Patrick Moloney
Thanks for all the replies. As I said in my original post the comments are on the first lines of the included file and are HTML comments. I'll have to look closer at comment syntax - I see there are empty comments and issues with pairs of double hyphens. My overall code worked well with 2

[PHP] Re: Include File Errors with Comments

2009-03-11 Thread Patrick Moloney
OK, I think I've got the problem. I had to go back further than where the problem appeared to be. The 1st error was the comment code on the div line before the menu is Included. It had the -- in the comment. Oddly, it interacts with the same error in the comment in the mainmenu file. I saw some

[PHP] Include File Errors with Comments

2009-03-10 Thread Patrick Moloney
I have a simple web site with a simple page that all works well, although I have had a similar problem a couple of times that seems to be caused by Comment Lines in the included files. I wonder if I have it entirely right. All my files are .php files, but almost all the code is HTML. The file

Re: [PHP] Re: Some kind of Popup

2009-02-07 Thread Patrick Moloney
Ashley Sheridan wrote: On Sat, 2008-11-22 at 12:32 -0500, Patrick Moloney wrote: Yeti wrote: Another JavaScript method would be to load the content in a hidden div with position: absolute. I think that's what I was considering doing with CSS except it would be labels only in the content. I

Re: [PHP] Re: Some kind of Popup

2009-02-07 Thread Patrick Moloney
Phpster wrote: No, it's a generic solution, should be pretty much the same across browsers. Why not download more browsers and test? Thanks all, I thought this might get lost in history here. It's not just different browsers, it's different operating systems - Apple, Linux, more. I can't

Re: [PHP] Can GD make a JPG thumbnail of a PDF?

2008-12-11 Thread Patrick Moloney
It looks like there is something wrong with your newsreader because your replies are not being connected to what you are replying to. Have you noticed? Much harder for everyone. What newsreader are you using? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Some kind of Popup

2008-11-22 Thread Patrick Moloney
I have web pages that display multiple physical products. I'd like to be able to include a button near each one to display certain characteristics (eg: height, length, depth, weight etc). These characteristics will be in a single table record in Mysql for each product, so I can retrieve the

[PHP] Re: Some kind of Popup

2008-11-22 Thread Patrick Moloney
Would #2 be blocked by user popup blocker? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Some kind of Popup

2008-11-22 Thread Patrick Moloney
Yeti wrote: Another JavaScript method would be to load the content in a hidden div with position: absolute. I think that's what I was considering doing with CSS except it would be labels only in the content. I only wanted to retrieve the data record from mysql if the user asked for the

Re: [PHP] Printing Web Page

2008-11-13 Thread Patrick Moloney
Thanks to all. That worked well. I just had to insert the stylesheet link on each of a couple dozen pages, but it worked. My pages were a little complicated and took some work - and could probably use more but I'll deal with that as I go. Some samples I found were very simple print

Re: [PHP] Printing Web Page

2008-11-08 Thread Patrick Moloney
Ashley Sheridan wrote: On Thu, 2008-11-06 at 22:35 +0100, Frank Arensmeier wrote: 6 nov 2008 kl. 21.21 skrev Patrick Moloney: I'd like to enable my users to print individual web pages from their browser. If they simply select the browser print button they don't get all the text

[PHP] Printing Web Page

2008-11-06 Thread Patrick Moloney
I'd like to enable my users to print individual web pages from their browser. If they simply select the browser print button they don't get all the text that is displayed in a scrolling text area. The web page is static html and css, in a php file. -- PHP General Mailing List