Re: [PHP] Generating PDF...

2001-12-11 Thread Henrik Hansen
while! also check out pc4p (sf,net(projects/pc4p) which is a good api for making pdf's, uses php's pdflib functions. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To co

[PHP] Re: php binary

2001-12-11 Thread Henrik Hansen
cgi support AFAIK. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] mysql backup

2001-03-22 Thread Henrik Hansen
mp -h host -p password -u username databasename > /path/to/file then you have a comple dump of your database and database structure. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

Re: [PHP] General question :)

2001-03-26 Thread Henrik Hansen
ike to have a few larger files in my directory seperating different similar functionality in them, I think it's also a good idea to have all functions in one file, makes them easy to find. But alot of small php files can also work, I would reccommend you try some different solutions out and find y

Re: [PHP] General question :)

2001-03-26 Thread Henrik Hansen
se you can have a few big files and some small files with it, depends > on what the big files do, Classes and common functions can be grouped > together. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [PHP] password

2001-03-27 Thread Henrik Hansen
"Marisol Díaz E." <[EMAIL PROTECTED]> wrote: > 1. (*) text/plain > > Hi > > I need the code, for protecting the dir by password. take a look at htaccess files -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] resource ID?

2001-06-22 Thread Henrik Hansen
#x27;$email'",$db); > echo $result; because $result is the result of a mysql query and you can not echo this to get the values instead you for example have to use mysql_fetch_array to get all the values from the $result. php.net/mysql -- Henrik Hansen -- PHP General Mail

Re: [PHP] Developer mailing list

2001-06-22 Thread Henrik Hansen
the proper direction? [EMAIL PROTECTED] [EMAIL PROTECTED] to subscribe AFAIK -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Is this a joke?!

2001-06-22 Thread Henrik Hansen
"Fredrik Arild Takle" <[EMAIL PROTECTED]> wrote: > Is this a joke? > http://www.perl.com/search/index.php nope it's not a joke :) it's pretty nice feature on a perl site :=) -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] SubDomain Redirect

2001-06-23 Thread Henrik Hansen
; header("Location: http://www.mydomain.com/index.php?id=cars";); break; } and so on -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] good chat script?

2001-06-23 Thread Henrik Hansen
"Daniel Goldin \(E-mail\)" <[EMAIL PROTECTED]> wrote: > Anybody know of a good chat script? I'm hoping for the chat equivalent of > phorum. Thanks for any help. http://phpwizard.net/projects/phpChat/ - might give that one a go. -- Henrik Hansen -- PHP

Re: [PHP] Linux Guru's

2001-06-26 Thread Henrik Hansen
ition my HDD, i would prefer to have a File on my hdd that has >Linux on it, my WinXP install is on a > FAT32 Partition.. > >    Now how can i do this? :) short answer dont do it longer, read up on umdos and linux -- Henrik Hansen -- PHP General Mailing List (http://w

Re: [PHP] irc bot?

2001-06-26 Thread Henrik Hansen
Michael Roark <[EMAIL PROTECTED]> wrote: > Does anyone know of the existance of an irc bot written in php or > otherwise, which will talk to a mysql database? have seen something called php-egg, which you can look at here: http://kill-9.dk/php_egg/ -- Henrik Hansen --

Re: [PHP] PHP & PGP

2001-06-29 Thread Henrik Hansen
"Pepe Lopez" <[EMAIL PROTECTED]> wrote: > Hi there, > > I want to encrypt mails coming from my webform with pgp. Is it possible? this hack might help you http://alt-php-faq.org/#id65 -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To un

Re: [PHP] Convert

2001-06-30 Thread Henrik Hansen
t it to mysql that way. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Auto submit form, How?

2001-06-30 Thread Henrik Hansen
answer look here http://www.developer.irt.org/script/script.htm -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] sending 5000+ emails - use PHP?

2001-07-03 Thread Henrik Hansen
"Kman" <[EMAIL PROTECTED]> wrote: > Yes, if you can stop mail server. Then kill the related process. No, > otherwise. or if the browser window is open you can just press esc (you can leave it open is your timeout is disabled) -- Henrik Hansen -- PHP Gene

Re: [PHP] sending 5000+ emails - use PHP?

2001-07-03 Thread Henrik Hansen
in your queue sendmail may choke a little more on 2500 messages, than if all goes right through. Or am I wrong? -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] sending 5000+ emails - use PHP?

2001-07-03 Thread Henrik Hansen
I heard that sorting by domain would speed up thing because the mailserver allready has a connection to the forign mailserver, what do you mean by repeated replies? -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

Re: [PHP] Executing UNIX commands with PHP

2001-07-04 Thread Henrik Hansen
"Tim Taubert" <[EMAIL PROTECTED]> wrote: > Hi all, > how can i execute a UNIX command like > > 'newuser "Tim Taubert" tim password' $output = system("unix_command"); echo "The result was" . $output; more info at: www.ph

Re: [PHP] Executing UNIX commands with PHP

2001-07-04 Thread Henrik Hansen
"Tim Taubert" <[EMAIL PROTECTED]> wrote: > mh this is bad... > > can i do anything else instead of this ? crypt the password before inserting it into the user account? -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-ma

Re: [PHP] ok!

2001-07-05 Thread Henrik Hansen
database? http://www.mysql.com/doc/P/r/Privilege_system.html > > Do i use mysqlacccess? i only know of mysqlfront.de -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To co

Re: [PHP] Very urgent!!!

2001-07-07 Thread Henrik Hansen
field, using normal sql syntax. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] PHP with MS Access?

2001-07-08 Thread Henrik Hansen
"Jeff Lewis" <[EMAIL PROTECTED]> wrote: > 1. (*) text/plain > > Anyone have a tutorial or site dealing with PHP and MS Access databases? > if you dont have a dns: http://www.alt-php-faq.org/#id46 if you do: php.net/odbc -- Henrik Hansen -- PH

Re: [PHP] can't generate gif!!!

2001-07-08 Thread Henrik Hansen
nder, I can't control the input file type. It will be > very helpful if I can at least convert to other image format. what gdlib version do you use, as gif support is removed in the newer versions, due to license stuff. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) T

Re: [PHP] OT--.pdf file header info

2001-07-08 Thread Henrik Hansen
I have made a search of the Adobe site and of google and can't find any > information about .pdf file headers. Can any one on the list point me to > some resources? try the newsgroup: comp.text.pdf -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] Re: php chat

2001-07-09 Thread Henrik Hansen
ook at php's new irc functions. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Re: Running PHP as a cron job....

2001-07-10 Thread Henrik Hansen
; >> Thanks again for all your comments and help. >> >> James. >> >> >> >> -- >> PHP General Mailing List (http://www.php.net/) >> To unsubscribe, e-mail: >> [EMAIL PROTECTED] >> For additional commands, e-mail: >> [EMAIL

[PHP] Re: deletion of temp files

2001-07-10 Thread Henrik Hansen
se > files once the user logs off ; perhaps with the use of sessions do you know what the files are named? then you can just use unlink() on each of them? -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP] Re: http referer

2001-07-11 Thread Henrik Hansen
uld work if the user have a referer, a user has only a referer if the user comes from another page to your page, because it dont work might be because the user entered your page directly? -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTE

Re: [PHP] Re: http referer

2001-07-11 Thread Henrik Hansen
[EMAIL PROTECTED] (Don Read) wrote: > On 11-Jul-01 Henrik Hansen wrote: >> [EMAIL PROTECTED] (Jack) wrote: >> >> > 1. (*) text/plain >> > >> > Dear folks I was told that http referer can tell me where the user >> > come from. But it

Re: [PHP] Re: http referer

2001-07-11 Thread Henrik Hansen
[EMAIL PROTECTED] (Soeren Nielsen) wrote: >> I though every browser supported it, do you have an example on one >> that does not? > > I Opera the user can choose to disable the use of referer ohh I did not know that, maybe be because I never tried it :) now i know :)

[PHP] Re: Rename a File?

2001-07-11 Thread Henrik Hansen
[EMAIL PROTECTED] (Randy Johnson) wrote: > How do I rename a file on Linux in PHP? > you mean using a php function? php.net/rename -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: [PHP] Alternative to phpMyAdmin

2001-07-12 Thread Henrik Hansen
[EMAIL PROTECTED] (Steve Brett) wrote: > mysql front is by far my favourite > > available from mysql download section. or mysqlfront.de -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

[PHP] Re: Detection of no cookies?

2001-07-12 Thread Henrik Hansen
like if (setcookie(...)) { "the user has cookies"; } else { echo "No cookies"; exit; } -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

Re: [PHP] PHP irc chatrooms

2001-07-12 Thread Henrik Hansen
[EMAIL PROTECTED] (Sam Masiello) wrote: > Try #php :) Lots of people hanging out in there all the time. > It seems that #php on efnet is more interesting than others :) -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTE

[PHP] Re: wordwrap()

2001-07-17 Thread Henrik Hansen
"; > ?> you should use $newtext = wordwrap( $text, 8, "", 1); instead of $newtext = wordwrap( $text, 8, "\n", 1); because \n is not visiable printed in a browser but is -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai

[PHP] Re: wordwrap()

2001-07-17 Thread Henrik Hansen
[EMAIL PROTECTED] (Rehuel Lobato De Mesquita) wrote: > Hey Ty, > > I had the same problem. I read somewhere that you can use "\r\n" instead. \r it's windows that uses \r\n so if you run your scripts on a windows machine it might be a good idea to split on them

Re: [PHP] date HELP !!!!!

2001-07-23 Thread Henrik Hansen
k that the current date is the end of month >> >> Thanks in Advance >> >> >> -- >> PHP General Mailing List (http://www.php.net/) >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> To contact

[PHP] Re: limit items per page

2001-07-23 Thread Henrik Hansen
[EMAIL PROTECTED] (James Holloway) wrote: > Hi Steph, > > as the name suggests, use LIMIT ;) AFAIK it's mysql specific (at least it does not work with mssql) -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

[PHP] Re: number generat {Luhn algorithm}

2001-07-23 Thread Henrik Hansen
39.php and many more -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Re: mail with html

2001-07-23 Thread Henrik Hansen
me > where I can study some scripts or tutorials. > if I were you i would read the manual page for the mail function, there is examples of sending html mails and not. http://php.net/manual/en/function.mail.php -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] Re: Check for exist function

2001-07-23 Thread Henrik Hansen
[EMAIL PROTECTED] (Rosen) wrote: > Hi, > How can I check, thath some function is declared and to do not declare it > second time ( with "require" ) ? http://dk.php.net/manual/en/function.function-exists.php -- Henrik Hansen -- PHP General Mailing List (http://www.php.n

[PHP] Re: declaring variables in PHP???

2001-07-24 Thread Henrik Hansen
e you a warning when variables aren't defined, but it still does not NEED to be defined. > 2. are there source code checking tools that could help me locate > problems like described above? dont know. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Re: php newbie - browser email address

2001-07-24 Thread Henrik Hansen
their ip address to keep track of visits? -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Re: phpinfo - mysql - windows

2001-07-25 Thread Henrik Hansen
version of the bundeld mysql client. To upgrade this recompile php and specify a mysql source dir. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

[PHP] Re: Supressing warnings on "max file size exceeded"

2001-07-25 Thread Henrik Hansen
s? > is the file very large? then you might have to set: ; Maximum allowed size for uploaded files. upload_max_filesize = 2M to some more (in your php.ini). -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] Re: Big difference?

2001-07-25 Thread Henrik Hansen
e but can take more paremeters, look at their manual pages for more information. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Big difference?

2001-07-25 Thread Henrik Hansen
[EMAIL PROTECTED] (Johannes Schill) wrote: > Hello Kyle, > > The difference between echo and print is that print returns a boolean value, > so you can check if "blah blah" was successfully printed. hmm isen't it always succesfull printed or did I miss something?

[PHP] Re: Text Database class

2001-07-30 Thread Henrik Hansen
values and data is stored in a raw text > file. I dont, but you can get free mysql databases here, freesql.org -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

[PHP] Re: Text Database class

2001-07-30 Thread Henrik Hansen
ual/en/ref.domxml.php and http://www.php.net/manual/en/ref.xml.php -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Re: Need for dox...

2001-07-30 Thread Henrik Hansen
5.php3 http://www.phpbuilder.com/columns/mattias2312.php3 http://www.phpbuilder.com/columns/ying2602.php3 -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact th

[PHP] Re: "Call to a member function on a non-object" error!

2001-07-30 Thread Henrik Hansen
ince my webserver upgraded to PHP4. > Line 304 contains this: > >$MyCart->Display($Orderno); > have you initialized you object before using it? like: $MyCart = new MyCart; -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTE

[PHP] Re: Text Database class

2001-07-30 Thread Henrik Hansen
[EMAIL PROTECTED] (Elias) wrote: > http://www.php.net/manual/en/ref.dba.php > wasn't what I really wanted, > > Any other ideas to use text databases? > xml, csv files, what do you need excatly and how advanced? -- Henrik Hansen -- PHP General Mailing List (htt

[PHP] Re: Can't write to file via php, just via ftp...Can anyone help?

2001-07-30 Thread Henrik Hansen
if there is a solution for > this? I mean, others have to write to the server too, so there must be a way > to do it... (btw, it's a linux or unix server where the pages are on). > Thanks for your thoughts. contact the system administrator and tell him to set the right permission

[PHP] Re: Pear

2001-07-31 Thread Henrik Hansen
developed quite a few DB driven sites. Any good readings that you know of? http://www.onlamp.com/pub/a/php/2001/05/24/pear.html http://www.onlamp.com/pub/a/php/2001/07/19/pear.html -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

[PHP] Re: Pear

2001-07-31 Thread Henrik Hansen
[EMAIL PROTECTED] (Henrik Hansen) wrote: > [EMAIL PROTECTED] (Mindhunter) wrote: > > > Hi, > > > > Is it worth the while to read up on PEAR? I have seen much of it but I > > I would say it is, but have in my that it's under development > >

[PHP] Re: PHP EDITOR 4 WINDOWS?

2001-08-01 Thread Henrik Hansen
[EMAIL PROTECTED] (Kyle Smith) wrote: > Does it really exist? If so could someone post some URLs for me? http://alt-php-faq.org/links.html - look under editors, there are maybe more... -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EM

[PHP] Re: FAQ

2001-08-01 Thread Henrik Hansen
make a faq on how to find faqs? :) http://alt-php-faq.org/ http://www.php.net/manual/en/faq.php http://php.faqts.com -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the li

[PHP] Re: Web site counter

2001-08-01 Thread Henrik Hansen
[EMAIL PROTECTED] (Kyle Smith) wrote: > Is it possible to make a website counter with a PHP script and a text > document? If so can somebody email me a script (unlikely) or send me > to a page with a script (yay) check hotscripts.com -- Henrik Hansen -- PHP General Mailing L

[PHP] Re: crypted source

2001-08-06 Thread Henrik Hansen
low the access (read, write, ...) > to the php source code on the server machine? > that is > something like a crypting mechanism > or a seminterpreter module for php in order > to hide the source code inside the server ? http://apc.communityconnect.com -- Henrik Hansen -- PH

[PHP] Re: count()?

2001-08-06 Thread Henrik Hansen
[EMAIL PROTECTED] (Jeremy Morano) wrote: > Hi, I was woundering how to read and find the # of records in my table... > Do I use count()??? yes select count(*) from table -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTE

[PHP] Re: PHP Editor

2001-08-08 Thread Henrik Hansen
t-php-faq.org/links.html -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Re: code to see files in directories

2001-08-08 Thread Henrik Hansen
; $file != "..") { getDirContents ($slashdir . $file . "/"); } else if ($file != "." && $file != "..") { echo $file . ""; } } closedir($dh); } getDirContents("/test/"); -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Re: post problems

2001-08-09 Thread Henrik Hansen
this is generating a warning if var is not passed to the page, as I do not > always want to pass the data to it, how can i test for the occurence of var > and respond to it from within the called page? maybe you need to globalize your var on the page where it's posted to? if (isse

[PHP] Re: ICMP Ping

2001-08-13 Thread Henrik Hansen
[EMAIL PROTECTED] (James Crowley) wrote: > Hi, > Is there any way to send an ICMP ping (or packet) from PHP? > (without using exec("ping")!!) use sockets -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTEC

[PHP] Re: large external script to include in many pages

2001-08-13 Thread Henrik Hansen
[EMAIL PROTECTED] (Web Manager) wrote: > Hello, > > I am testing a new DHTML code for navigation menus. I plan to use it > throughout my web pages made with PHP. The script is about 600 lines > long! > > Beside making a : > > define (script1, "" . > "" . > "" . > ""); > > and c

Re: [PHP] Re: Search "all" in mysql

2001-09-30 Thread Henrik Hansen
ted you just insert a % on something's place select blah from table where field like '%%%' and no check on input is needed (AKAIK). -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

[PHP] Re: PHPEd

2001-09-30 Thread Henrik Hansen
> bit of very minor web browser/message client/email use) in 1.75. Have > issues like this been resolved? get the latest free preview from phped.com version 2.96.1 is MUCH better than 1.75 and it's still free. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To uns

[PHP] Re: Running a script with Crontab

2001-09-30 Thread Henrik Hansen
run this script. > > Can anyone enlight me on this > http://alt-php-faq.org/#id81 -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Re: PHPEd

2001-09-30 Thread Henrik Hansen
[EMAIL PROTECTED] (Kath) wrote: > I'm looking to support the company though and my boss said he would buy > software for us. > I would say it's much more stable than the version you have been working with, so should be worth the money. -- Henrik Hansen -- PHP General

[PHP] Re: Dated/Timed actions

2001-10-02 Thread Henrik Hansen
> happy birthday message to a users. use a cronjob http://alt-php-faq.org/#id81 -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Re: Dated/Timed actions

2001-10-02 Thread Henrik Hansen
Try at instead. if you dont have cron access I dont think you have at perms either. maybe set a job up on your local computer? -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contac

Re: [PHP] Re: Dated/Timed actions

2001-10-02 Thread Henrik Hansen
e 2 simultaneos visits at 0:00am or mayor, the php will > execute 2 times the script... > > so... is there a good script as efective as a cron job? > cron is the superior when you need to do things like that. It's not effective to have a script running all the time checki

[PHP] Re: Detecting user logout.

2001-10-02 Thread Henrik Hansen
of uncertainty. I still think there are many other ways (better?) to do it. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Re: Newlines in files

2001-10-03 Thread Henrik Hansen
t it!? > But it doesn't!!! after printing where? in a browser \n does NOT mean newline only on console and in file etc. if you print it in a browser use nl2br(); -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] Re: popup window under php

2001-10-04 Thread Henrik Hansen
[EMAIL PROTECTED] (Tim Sawyer) wrote: > I want to open a popup window under php control. So lets say I have an > if statement which if true opens the window. > > if ($something) { > JavaScript:window.open("test.php",blah...); >} > > Guess I'm saying that I want to call a Javascript f

[PHP] Re: random numbers help

2001-10-05 Thread Henrik Hansen
other value of the random number each time the > page is refreshed. RTFM, you need to seed before you call mt_rand as stated on the man page. -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

<    1   2