[PHP] Re: help register domain name

2006-01-09 Thread n.g.
haha! never mind. im joking. thanks for you all, i'll find the way out. On 1/9/06, n.g. [EMAIL PROTECTED] wrote: Want to know why i call for help? for in this god damned country , anything and everything you want to do, you find you are facing the wall. On 1/9/06, Barry [EMAIL PROTECTED

[PHP] Re: help register domain name

2006-01-09 Thread n.g.
Yeah! its realy realy realy great, nothing greater.:-D On 1/9/06, Jim Moseby [EMAIL PROTECTED] wrote: Want to know why i call for help? for in this god damned country , anything and everything you want to do, you find you are facing the wall. Would that be the great wall? JM --

[PHP] help register domain name

2006-01-05 Thread n.g.
hi, i want to register a domain name through NetworkSolutions.com, but it require a credit card which i dont have to pay the bill. if you have a credit card, i can transfer to your account, and then you please regiter the domain using my info. or if you have any other ways to do so. p.s. i live

[PHP] Re: Can't execute external program

2005-11-25 Thread n.g.
sorry , i have made mistake. `option +exec' is not required, and there is no such apache option. maybe you're running php in safe_mode ? On 11/24/05, n.g. [EMAIL PROTECTED] wrote: put the executable into another directory rather than DOC_ROOT, maybe you have reached apache security settings

[PHP] Re: Can't execute external program

2005-11-25 Thread n.g.
or `sample1.new' was created in some other directory, for exampe, the cwd of apache server process. do a search to find it , or use full path in your commandh line. On 11/25/05, n.g. [EMAIL PROTECTED] wrote: sorry , i have made mistake. `option +exec' is not required

[PHP] Re: Can't execute external program

2005-11-24 Thread n.g.
created, fairly simple: ?php exec(/var/www/html/myprog -E 123456789098.dat sample1.txt sample1.new); phpinfo(); ? On 11/22/05, n.g. [EMAIL PROTECTED] wrote: is /var/www/html your web root dir ? maybe its the plobrem. On 11/23/05, Henry Castillo [EMAIL PROTECTED] wrote

[PHP] Re: preg_match_all for dummies

2005-11-24 Thread n.g.
lookbehind assertion require fixed length string as its parameter. but you intend to put arbitary length string between `!--' and `[!' so the solution can be 1, remove html comments first before do bbcode expansion. 2, change bbcode tags to something like `[!-- .* --!]', that is define a new tag

[PHP] Re: Cookie problem with IE

2005-11-22 Thread n.g.
save below as testcookie.php, request it from your browser twice, what do you get at 2nd time? ?php setcookie('sessioncookie', 1); setcookie('storedcookie',1,time()+3600); var_dump($_COOKIE); ? On 11/22/05, Kristen G. Thorson [EMAIL PROTECTED] wrote: Anyone have any suggestions?

[PHP] Re: Cookie problem with IE

2005-11-22 Thread n.g.
antivirus/firewall software installed you even cant rely on http referer header, as well as cookies. and you have to do something before you can find out what is happening, isn't it ? On 11/22/05, n.g. [EMAIL PROTECTED] wrote: save below as testcookie.php, request it from your browser twice, what

[PHP] Re: Execute a program from PHP CLI and allow user interaction

2005-11-22 Thread n.g.
use proc_open , connect stdin/out of php cli to nano, i guess On 11/23/05, Jasper Bryant-Greene [EMAIL PROTECTED] wrote: Hi all This one's got me stumped. I'm working on a PHP CLI interface, and I need to allow the user to input a bit of HTML. Rather than bandy around with readline() and

[PHP] Re: Can't execute external program

2005-11-22 Thread n.g.
is /var/www/html your web root dir ? maybe its the plobrem. On 11/23/05, Henry Castillo [EMAIL PROTECTED] wrote: That was on of the first things I checked: safe mode is set to off Any ideas... Henry Voip tech said the following on 11/20/2005 10:31 PM: Hello, I cannot get exec(),

[PHP] Re: ampersand in dom with utf-8

2005-11-03 Thread n.g.
seems that `DomDocument-createTextNode()' accepts only utf-8 string, try encode the text before pass it to that function. in browser side, you can view document property, browser generally allow you to specify any encoding used to view a page, try get familar with you browser first. On 11/3/05,

[PHP] Re: Convert fake Unicode to real UTF-8

2005-11-03 Thread n.g.
UTF-8. In the MySQL-Table the text gets converted to something like #1043;#1072; as an ASCII text. where did you see this, phpmyadmin or mysql cli ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php