[PHP] passthru in IE: fullscreen display of SWF

2005-05-26 Thread dc
ot;.trim(htmlentities($name))); header("Content-Length: ".(string)(filesize($path))); header("Connection: close"); fpassthru($fd); } } -- ___

[PHP] extending built in classes?

2004-10-09 Thread dc
Hi - I am trying to extend a built in class, but cannot seem to get my subclass methods called. class movObj extends SWFMovie { function init() { echo("init"); } } $m = new movObj(); $m-init(); Gives::: Fatal error: Call to

[PHP] move a record into a different table

2003-01-31 Thread DC
Hi all, I want to delete a record from my table 1, but would like all the data for that single record passed onto my (archive) table 2 at the same time Sounds easy!! Any ideas?? Thanks DC -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] email a web page

2003-01-06 Thread DC
\admin\newsletteremailcommand.php on line 79 Warning: Failed to Connect in c:\www\cavalier\admin\newsletteremailcommand.php on line 91 Any quick and easy tips to get my newsletter happening? Even a new script or easy tutorial in Englsih. Thanks DC -- PHP General Mailing List (http

[PHP] connection

2002-09-29 Thread DC
,,); mysql_select_db(databaseName,$dbcnx); ? etc etc needs to be changed to what to see the site working live ? Any ideas or tips greatly appreciated!!! Thanks DC -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Word docs

2002-09-01 Thread DC
Hi, I have 200 items in a mysql database. Each has a word document with the path: Assets/Reports/Docname.doc How do I open the word doc that is specific to the particular item? Thanks david php novice -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Display criteria

2002-07-10 Thread DC
Hi I want to display data based on the criteria selected by the user eg click on size to display smallest to largest, or by price smallest to highest, location etc etc what is the code I need? Thanks. DC -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Date and time functions

2002-05-16 Thread DC
an order when it comes to writing to a mySQL database? Can someone suggest a script that may give me the option to offer both time zones to the user? DC -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] highlighting Search Results

2002-05-06 Thread DC
[RetailPrice] . /td); ? How do I do this to highlight my search words? Thanks, any ideas much appreciated by this PHP newbie. DC -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: javascript ?

2001-07-23 Thread dc
You will need to use DHTML with javascript. Try www.docjavascript.com and search for dhtml columns. I'm sure he has something about turning on and off the display of items. The basic idea is you will change the display properties from none to block and vice-versa. example function show() {

[PHP] Re: javascript ?

2001-07-23 Thread dc
the second method should be hide() Dc [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... You will need to use DHTML with javascript. Try www.docjavascript.com and search for dhtml columns. I'm sure he has something about turning on and off the display

[PHP] Re: how do you use a CLASS ???

2001-07-20 Thread dc
Lets say you have a class called Car. You should see a constructor in the class the same as the class name: class Car { function Car(possible params...) { } function start() { ... } function stop() { } } To create a new car object you would do something

[PHP] Re: how do you use a CLASS ???

2001-07-20 Thread dc
Class files should be independant of platform. However, that does not mean it is not. For instance the class may query the database. So then it would be dependant on the database, type of database, or whatever. Your variables should not be the same name as your classes. e.g. $myCar = new Car()

Re: [PHP] custom tag support

2001-07-09 Thread dc
off my Ritchie book. Thanks for the help, Dan Michael Kimsal [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... dc wrote: I was curious if there was any custom tag support like jsp or cold fusion in php (or outside libraries). I'm looking at trying to

[PHP] custom tag support

2001-07-06 Thread dc
I was curious if there was any custom tag support like jsp or cold fusion in php (or outside libraries). I'm looking at trying to make re-usuable components and want to use something more than including simple classes or function calls. Thanks for your time, -- PHP General Mailing List