[PHP] FREE access to LIVE ADULT WEBCAMS! 100% FREE! No Credit Card Needed!

2002-12-17 Thread [EMAIL PROTECTED]
Below is the result of your feedback form. It was submitted by [EMAIL PROTECTED] ([EMAIL PROTECTED]) on Tuesday, December 17, 2002 at 15:04:18 --- bp: Are you sick and tired of sitting in a chatroom begging to see

[PHP] COM question

2003-01-10 Thread [EMAIL PROTECTED]
How I can manage Word through PHP? I have tried with the code indicated on PHP-guide (chm format) but it does not work. Visible = 1; $word->Documents->Add(); $word->Selection->TypeText("Questa è una prova..."); $word->Documents[1]->SaveAs("Prova inutile.doc"); $word->Quit(); $wor

[PHP] COM object

2003-01-11 Thread [EMAIL PROTECTED]
How I can create a Word document through PHP? Must I modify php.ini? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Multiple sizes for products

2003-01-18 Thread [EMAIL PROTECTED]
advance, Cesar L. Aracena [EMAIL PROTECTED] [EMAIL PROTECTED] (0299) 156-356688 Neuquén (8300) Capital Argentina mail2web - Check your email from the web at http://mail2web.com/ . -- PHP General Mailing List (http://w

[PHP] authorization

2003-03-12 Thread [EMAIL PROTECTED]
Hello, I'm wonding if someone can please assist me with the following addition I would like to make to a music artists site using PHP. The site has a mailing list, guestbook, & videos - when the user goes to access the guestbook and videos, I want to be able to check if they're signed-up to the m

[PHP] using exec to run a shell script

2003-08-04 Thread [EMAIL PROTECTED]
Hello. I'm attempting to run the exec function to run a shell script that will restart a service on my Red Hat server. The script says it has failed shutting down and restarting the service everytime I run it from a browser. Any suggestions on why it might be failing? I can send more details if nee

[PHP] searching date

2003-08-14 Thread [EMAIL PROTECTED]
-- Best salutations, Admin mailto:[EMAIL PROTECTED] http://clubafricain.partout.org Post-Joint : . -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Reading mail with PHP?

2003-08-14 Thread [EMAIL PROTECTED]
Hi, You are certainly on the right track wtih imap_*() The same set of functions can be used for checking both POP3 and IMAP 4 accounts. With POP3 however you will either have to leave mail on server or store them in db or maildir. Else you lose the mail after you read it! PHP happens to be on

Re: [PHP] Reading mail with PHP?

2003-08-14 Thread [EMAIL PROTECTED]
ients for nixes including pine. andu wrote: On Thu, 14 Aug 2003 19:35:21 +0600 "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: Hi, You are certainly on the right track wtih imap_*() Imap_* functions seem like the easy way out but I found them to be extremely slow for retri

Re: [PHP] OPINIONS wanted - xml-DOM-xsl + php

2003-08-14 Thread [EMAIL PROTECTED]
Hello, The reluctance to install DOM and XSL might be due to the fact that they tend to use a little bit more of processor and memory than other modules. But then again you can say the same about a join on a really big mysql table. :-) SAX on the other hand tends to be leaner and meaner so you

Re: [PHP] php, search engine that index via local filesystem?

2003-08-15 Thread [EMAIL PROTECTED]
Hi, Do you want to provide a web interface to your local file system? well the easiest would then be to just exec locate, which will make use of the slocate db. Alternatively you can try to exec find. These can be done painlessly and you don't have to install any software. If you need a more s

Re: [PHP] Function arguments

2003-08-15 Thread [EMAIL PROTECTED]
Hello, If you are worried about this issue your best option is to switch to an object oriented approach. all the best Hardik Doshi wrote: Hi Group, I have a question on overloaded function. What is the best way to pass the arguments so it is easy to maintain in future if function behaviour c

Re: [PHP] HOW DO U SPLIT UP LARGE STRINGS?

2003-08-15 Thread [EMAIL PROTECTED]
hello, you can use the split() method to break this up into pieces. Unless you are doing a large number of inserts on tables with several keys mysql will not be troubled too much by the number of queries you run. John Ryan wrote: I've a string with a huge mySQL query, seperated by a semi-colon

Re: [PHP] How to write my own php extensions

2003-08-15 Thread [EMAIL PROTECTED]
There are some documents in the php source tarball itself. this is a good starting point. Then please goto zend.com you will see some fantastic articles. all the best Dennis Lee wrote: Hi all : I want to write my own php extensions , but I don't know how to start . Please tell me where I can

Re: [PHP] preg_replace question

2003-08-16 Thread [EMAIL PROTECTED]
Then use a simple strstr to first find out if the string does contain mydomain.com :-) Jean-Christian IMbeault wrote: I found this nice preg_replace function that replaces all occurrences of an HTML anchor ( preg_replace( "# I'd like to modify this expression so that it does the same thing b

Re: [PHP] [php] explode that :) !

2003-08-16 Thread [EMAIL PROTECTED]
Looks like a really simple piece of code except for the cryptic variable names. John Taylor-Johnston wrote: $P1OC1Q1 = "1¶some text or some comment"; echo "Your score is: "; $score=split($P1OC1Q1,"¶"); echo $score[0]."\n"; Do I have to go through all that to get score[0] ? John -- Radi

[PHP] Efficient structure

2003-08-17 Thread [EMAIL PROTECTED]
I have multiple types of information to associate to one object. I have data structures that store data structures. What is the best/most efficient way to structure the data? A multi-dimensional array? A container object? Please Advise... /T

Re: [PHP] XML Parser misbehaves with &

2003-08-19 Thread [EMAIL PROTECTED]
Timo Boettcher wrote: Hi Jeff, Nachricht vom Montag, 18. August 2003, 18:14:37: I've come across this frustrating behavior with the XML parser when it reads an escaped ampersand (&) If the xml being evaluated is: Blue, Green & Red "The ampersand character (&) and the left angle br

Re: [PHP] pop3 functions

2003-08-19 Thread [EMAIL PROTECTED]
Nopes i read you correctly, yours was a complaint against c. andu wrote: On Tue, 19 Aug 2003 12:49:43 +0600 raditha dissanayake <[EMAIL PROTECTED]> wrote: andu wrote: On Mon, 18 Aug 2003 15:40:31 -0500 Ken <[EMAIL PROTECTED]> wrote: Those weird function names are ta

Re: [PHP] HELP! I'm Desperate...

2003-08-20 Thread [EMAIL PROTECTED]
Did you put in a 'help wanted' at sourceforge? usually works. Jason Sheets wrote: Why not go to a cybercafe every few days or once a week and check on the project? You can also go to Kinkos or your local library, most of them have internet enabled pcs. Jason Michael A Smith wrote: Hi, I'

Re: [PHP] How to open a save-as dialog and then redirect after donwload?

2003-08-20 Thread [EMAIL PROTECTED]
is this something like what sourceforge has? Marek Kilimajer wrote: I'm not sure, did you get my post? It is exactly what you want. But instead of downloading first and then redirecting, html page is generated first (like redirect), this page is displayed, and then starts the download. Jean-Chr

Re: [PHP] is the list getting virus spammed?

2003-08-20 Thread [EMAIL PROTECTED]
I am getting these majordomo mails as well, thought it was a problem at my end. grrr, people who use the redmond operating system deserve to be plagued by viruses. Marek Kilimajer wrote: And besides, does everyone after posting receives email from [EMAIL PROTECTED] and [EMAIL PROTECTED

Re: [PHP] back button and forms

2003-08-20 Thread [EMAIL PROTECTED]
view this Web page, click the Refresh button. Is there any way to avoid this from happening? Thx Tim Winters Creative Development Manager Sampling Technologies Incorporated 1600 Bedford Highway, Suite 212 Bedford, Nova Scotia B4A 1E8 www.samplingtechnologies.com [EMAIL PROTECTED] [EMAIL PROTECTED

Re: [PHP] comparing xml files, removing some html tags

2003-08-20 Thread [EMAIL PROTECTED]
Hi, Discussion of xerces will take us out of the mandate of this list. Please download xerces from http://xml.apache.org along with the documents and you will see plenty of sample codes. You might also want to look at IBM's developer site (IBM created the bulk of xerces) all the best raditha Ro

Re: [PHP] File upload + permissions + .htaccess in php

2003-08-21 Thread [EMAIL PROTECTED]
Hello, It could be because your server is using some out of the box virtual hosting setup like ensim or cpanel. This usually means your home path is not what it appears to be. That in turn means that if you use absolute pathnames with your file upload handler it's bound to fail. So you will need

Re: [PHP] OT-Re: worm on th list

2003-08-21 Thread [EMAIL PROTECTED]
Hi, Though many consider netscape to be a poor alternative to explorer as a browser, it's far superior to outlook when it comes to mail. Far safer too. :-)). Most of us on linux use mozzilla for everything - browsing, chatting and email. [EMAIL PROTECTED] wrote: aparantly it was design

Re: [PHP] count rows

2003-08-22 Thread [EMAIL PROTECTED]
mysql_num_rows gives the number of rows. But don't even think of doing it this way if you just want the number of rows and don't want the data. The correct way is to use a query such as [sql] select count(*) from table [/sql] this will return just one row and it wil tell you how many rows are

Re: [PHP] In need of a script

2003-08-24 Thread [EMAIL PROTECTED]
it's in the manual. Stevie D Peele wrote: Can someone show me an example of some code that works something like this : if cookie is present redirect to a certain page ?> Thanks The best thing to hit the internet in years - Juno

Re: [PHP] Help with reading files

2003-08-24 Thread [EMAIL PROTECTED]
How to handle file upload is well explained right at the start of the manual. Once the file has been transfered to your server you can make use of the numerous methods described in the 'filesystem functions' of the manual to handle it. Yasir Malik wrote: I am doing my development for our proje

Re: [PHP] Reading an MS Access Database file on *NIX platform usingPHP

2003-08-25 Thread [EMAIL PROTECTED]
Hi, The simplest way i know of to use access from linux is to use mdbtools (a free download at sourceforge). Haven't tried to invoke this from PHP but it would not be all that difficult to create a MDB module. Curt Zirzow wrote: * Thus wrote Giz ([EMAIL PROTECTED]): Access is

Re: [PHP] Reading an MS Access Database file on *NIX platform usingPHP

2003-08-25 Thread [EMAIL PROTECTED]
th 'ODBC socket server' they renamed themselves and i am not sure of the new name though. It wouldn't matter so much if people wanted to use ms SQL server instead they alsays insist on access :-(( Paul Fitzpatrick wrote: * Thus wrote Giz ([EMAIL PROTECTED]): Access is a pc dat

Re: [PHP] CMS question.

2003-08-26 Thread [EMAIL PROTECTED]
atch? Have you ever seen anyone upload bananas or oranges on the net? the most obvious word that could be placed here is "files", excuse me for forgetting to mention it! BTW: thanks for the your time Jay. Ed. -- Edmond Baroud Senior UNIX sysadmin mailto:[EMAIL PROTECTED

Re: [PHP] querystring and frameset issue

2003-08-26 Thread [EMAIL PROTECTED]
frame set will need to be in php try something like this [code] [/code] all the best Irvin Amoraal wrote: Can somebody tell me how to pass a value between two php pages within a frameset. I have a simple two column framset: navbar on the left, content on the right. I have two pages that are disp

Re: [PHP] Cannot pass values from one page to another

2003-08-26 Thread [EMAIL PROTECTED]
d" <[EMAIL PROTECTED]> To: "murugesan" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, August 26, 2003 5:23 PM Subject: RE: [PHP] Cannot pass values from one page to another [snip] I got this value in next page(main.php) But from there I am not able to pass it

[PHP] QUESTION - user management

2003-04-02 Thread [EMAIL PROTECTED]
How do applications know how many users are logged into the system? For example postnuke will tell you '3 users online, 2 members'. Im gussing it uses sessions, but how? Edd Barrett (http://www.filibusta.net) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.p

Re: [PHP] Can php run as a script?

2003-04-02 Thread [EMAIL PROTECTED]
PHP can run as a script indeed. #!/usr/bin/php Do that like you would perl and then make it executable. Should work. Note that any errors will be chucked back to the terminal in HTML. On 4/2/2003, "Poon, Kelvin (Infomart)" <[EMAIL PROTECTED]> wrote: >Hi, > >This m

Re: [PHP] REPLY NEEDED

2003-04-03 Thread [EMAIL PROTECTED]
What has this to do with PHP? On 4/4/2003, "PATRICK KOFI" <[EMAIL PROTECTED]> wrote: >STRICTLY CONFIDENTIAL > >WE ARE MEMBERS OF A SPECIAL COMMITTEE FOR BUDGET AND PLANNING OF THE NIGERIAN NATIONAL PETROLEUM CORPORATION (NNPC). THIS COMMITTEE IS P

Re: [PHP] mysql_num_rows

2003-04-04 Thread [EMAIL PROTECTED]
Someone helped me out with this to see exactly what the query is returning... echo " the Query: "; print_r ($select_result); echo ""; This should show you exactly what the result is getting... /T on 4/4/03 4:49 PM, Mike Tuller at [EMAIL PROTECTED] wrote: > I can't

[PHP] mysl_connect question

2003-04-05 Thread [EMAIL PROTECTED]
When I use myssql to connect to a db with anything besides root I get an error that I cannot connect. I created a user that has access to one databse called 'menu'. The user has SELECT, UPDATE, and DELETE permissions for that database. I can connect on the command line: mysql-u newuser -p. But

Re: [PHP] Morph an object

2003-06-06 Thread [EMAIL PROTECTED]
of the login routine and within each case I re-invoked the constructor with a different argument to change the content. Then when I called the Display() function again, it changed the screen on the browser... I really appreciate all your help! /T on 6/5/03 4:12, Lars Torben Wilson at [EMAIL PROTEC

[PHP] Help about these algorithm methods

2003-05-31 Thread [EMAIL PROTECTED]
Hello all, I need help about to implement these methods in PHP: 1) Tree (Arbol) 2) Queue - FIFO (Cola) 3) Grafo 4) Linked lis - (Listas enlazadas o ligadas)) 5) Stack - LIFO - (Pila) If someone know about a web site that explain these in PHP, I will appreciate it, thanks for all your help :),

[PHP] Change object state

2003-06-04 Thread [EMAIL PROTECTED]
Is there any way I can change the state of an already instantiated object? ex: $thisone = new Object(); $content = something; $thisone -> SetContent($content); $thisone -> Display(); That creates the object. Now if I want to change its content: $content = something different; $thisone ->

[PHP] Morph an object

2003-06-05 Thread [EMAIL PROTECTED]
All ye noble Knights of PHP: Got an interesting problem, I am creating a login routine for my PHP website. Each page is an extension of the root page object. I am creating a loginpage.php which is an object with a constructor: class Login extends Page { function Login($file) { if(isset($f

Re: [PHP] Morph an object

2003-06-05 Thread [EMAIL PROTECTED]
3 18:10, Lars Torben Wilson at [EMAIL PROTECTED] wrote: > On Wed, 2003-06-04 at 14:43, [EMAIL PROTECTED] wrote: >> All ye noble Knights of PHP: >> >> Got an interesting problem, >> >> I am creating a login routine for my PHP website. Each page is an extension >&

[PHP] Session Newbie Question: Cookieless sessions

2003-06-08 Thread [EMAIL PROTECTED]
How can one set up cookie-less sessions? More specifically, if you store your sessions in a database, once the user comes back how do you call that same session back? I guess I still don¹t understand how to keep user specific data maintained for a particular user. Because when you log off or th

[PHP] Javascript in PHP

2003-06-24 Thread [EMAIL PROTECTED]
How can I get a script to work on a page that has HTML generated by PHP and a javascript with functions called by an checkbox? javascript: function PrintScript(){ $js = "function CheckBox1()"; $js .= "{var box1 = window.document.ctype.wr;var box2 = window.document.ctype.pfo;var box3 = window.docum

Re: [PHP] Re: Javascript in PHP

2003-06-24 Thread [EMAIL PROTECTED]
the header info keeping JS from running? I'm stumped. /T on 6/24/03 9:04, Chris Hayes at [EMAIL PROTECTED] wrote: > > I missed the 1st post but could this be related to form name being 'crimetype' > and the javascript tryin to access the form 'ctype' ? > >

[PHP] Javascript and forms in PHP

2003-06-25 Thread [EMAIL PROTECTED]
Is there a limitation in PHP with Javascript and forms? I have a problem when creating a form within a table with Checkboxes and the accompanying javascript to govern the checks. I am generating the html for a table the first of 10 cells has 3 checkboxes. I have experimented whether to make the f

Re: [PHP] Javascript and forms in PHP

2003-06-25 Thread [EMAIL PROTECTED]
I understand perfectly well what PHP does. That is why I am confused that if HTML including javascript within

Re: [PHP] Re: Javascript and forms in PHP

2003-06-25 Thread [EMAIL PROTECTED]
Thanks for the info... /T on 6/25/03 8:06, Manuel Lemos at [EMAIL PROTECTED] wrote: > Hello, > > On 06/25/2003 09:55 AM, [EMAIL PROTECTED] wrote: >> Is there a limitation in PHP with Javascript and forms? I have a problem >> when creating a form within a table wi

[PHP] High Resolution Images

2002-07-26 Thread [EMAIL PROTECTED]
Hello, I am creating a script that takes an uploaded image, creates a thumbnail from it, and saves both files. The script works great, but the problem is, the files It will have to handle, are high-resolution files (300dpi, 24 bit-depth).. it works fine on regular files (72 dpi), but when I uplo

Re: RE: [PHP] Q:What is the easiest way to test my PHP+Html pages?

2002-07-27 Thread [EMAIL PROTECTED]
t now. Oscar.- --- Mensaje Original -- De: John Holmes [[EMAIL PROTECTED]] Para: Marcus Unlimited [[EMAIL PROTECTED]], [EMAIL PROTECTED] [[EMAIL PROTECTED]] Cc: Asunto: RE: [PHP] Q:What is the easiest way to test my PHP+Html p

Re: [PHP] High Resolution Images

2002-07-27 Thread [EMAIL PROTECTED]
), it does not display. mmm Any suggestions? - Original Message - From: "Justin French" <[EMAIL PROTECTED]> To: "Tech Support" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, July 26, 2002 9:22 PM Subject: Re: [PHP]

[PHP] select multiple

2002-07-31 Thread [EMAIL PROTECTED]
Hello, i have done as told to select multiple value from a html form, but i cannot insert all of them into MySql database. it inserts Array into the field, instead of the list of values. What can i do? Is there a special script to insert them? i tried, $str = ""; foreach ($tableau as $k=>$v) $str

[PHP] wordwrap function (that skips html tags)

2002-09-03 Thread [EMAIL PROTECTED]
hello! i found a nice function that i would like to use but unfortunately there is a problem i can not solve. for my notepool device it would be great to use php's wordwrap function but because the string that needs to be wordwrapped contains also html tags i can not use this function like this.

[PHP] Better Images

2002-09-12 Thread [EMAIL PROTECTED]
Hi all, One of my customers needs to show magazine & newspapers reviews of his work, which are scanned in such a low res due to a file size matter, that the images are not quite readable. Can I convert large size images to pdf with PHP in order to show them faster on-the-fly? Will this be better?

[PHP] PHP and Flash

2002-09-17 Thread [EMAIL PROTECTED]
Hi all, I've never combined PHP with Flash, but I do know there's some possibilities. I'm wondering if I can make a dynamic-PHP-site which controls Flash. I need the administrator to be able to upload a new product to a DB, and then be seen by the visitors in Flash... is this possible? I want to

[PHP] newbie question, open file error

2002-10-30 Thread [EMAIL PROTECTED]
hi, i hope im sending this to the correct place. im getting this error (below) when i run a script on my server. Im assuming I need to communicate with my admin about permissions, but im not 100% sure what the permission is. I'm basically trying to create an html file. if anyone can give me

[PHP] newbie question, open file error

2002-10-30 Thread [EMAIL PROTECTED]
hi, i hope im sending this to the correct place. im getting this error (below) when i run a script on my server. Im assuming I need to communicate with my admin about permissions, but im not 100% sure what the permission is. I'm basically trying to create an html file. if anyone can give

Re: [PHP] PHP search engines

2002-11-17 Thread [EMAIL PROTECTED]
gosearch.org = Heilig (Cece) Szabolcs - [EMAIL PROTECTED] - http://www.phphost.hu = -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Serve a file using PHP

2003-08-26 Thread [EMAIL PROTECTED]
Hello, Bit suprised that mozilla didn't let you access the file using the 'file://' notation. Did you actually use three slashes? ie it should be 'file:///home/grant' and not 'file://home/grant/' There isn't any other way in which you can use PHP to access files on a hard disk. PHP is a server

Re: [PHP] Cannot pass values from one page to another

2003-08-27 Thread [EMAIL PROTECTED]
RS because I need to pass the password from one page to another. -murugesan - Original Message - From: <[EMAIL PROTECTED]> To: "php mailing list" <[EMAIL PROTECTED]> Sent: Tuesday, August 26, 2003 7:13 PM Subject: Re: [PHP] Cannot pass values from one page to another

Re: [PHP] Cannot pass values from one page to another

2003-08-27 Thread [EMAIL PROTECTED]
n you are using cookies the data actually get's transferred between the client and the server. best regards CPT John W. Holmes wrote: From: <[EMAIL PROTECTED]> Ok this is a major vulnerability that you are coding. Register globals on and password being stored in the session

Re: [PHP] speed of mail() on two servers

2003-08-27 Thread [EMAIL PROTECTED]
mail version in two machines? You should compare both sendmail configuration and try to check the speed from a bash script for example. -Mensaje original- De: David T-G [mailto:[EMAIL PROTECTED] Enviado el: miercoles, 27 de agosto de 2003 0:40 Para: PHP General list Asunto: [PHP] speed o

Re: [PHP] Linking to files outside the directory structure...?

2003-08-27 Thread [EMAIL PROTECTED]
Hello, This is very much a possibility. first you 'fopen' the file and then you do an 'fpassthru' it will send the file to the client. You do need to create the correct headers (content-type and content-disposition) to match the file type etc. All the best [EMAIL PROTEC

Re: [PHP] Cannot pass values from one page to another

2003-08-27 Thread [EMAIL PROTECTED]
age. That page is authentication.php where I check the uname and passwd and invoked header('...php?$visnme) function From this page how can I pass $uname without using query parameters. Thanks for the reply -murugesan - Original Message ----- From: <[EMAIL PROTECTED]> To: "php mai

Re: [PHP] Warning - Page has expired error

2003-08-28 Thread [EMAIL PROTECTED]
Use get instead of post. for the request method. Then please make sure that you are not sending any expires headers in your code. all the best Tony Pagliocco wrote: On a website I am working on, when I go to a page that pulls a query , then click back to choose another option, I get an error t

Re: [PHP] how to block a user downloading a file?

2003-08-28 Thread [EMAIL PROTECTED]
Hello, Since this is a cab file, i don't think you will be able to modify it. Why don't you put the cabs outside the document root? there was a discussion on doing something similar just this week on this very list. If you insist on having the stuff on the document root you can use .htaccess f

Re: [PHP] speed of mail() on two servers

2003-08-28 Thread [EMAIL PROTECTED]
ipt. the apache configurations turned out to be the culprit. all the best David T-G wrote: Jabber, et al -- ...and then [EMAIL PROTECTED] said... % % having you tried ezmlm or to directly inject the message into the que? Yes, I've tried qmail-inject. I got down to about 0.41s/msg whi

Re: [PHP] Urgent help required for using Cron

2003-08-28 Thread [EMAIL PROTECTED]
Hi briefly: you need to create a cron job by typing crontab -e at the command line. each line in the crontab has five fields which define the time at which the cron job will run. more info in man cron and man crontab. Cron sends a mail to the owner of the job when a job fails. you can pipe it

Re: [PHP] LWP::Parallel in PHP

2003-08-29 Thread [EMAIL PROTECTED]
hi, David is right, you will not find an equivalent. My advise is to mix PHP and perl. You can get a perl script to handle the URL retrieval stuff and pass handlign back to php when you are done. It's this approach that i took when creating the mega upload progress bar for php. all the best

[PHP] Planning a project with PHP.

2003-09-05 Thread [EMAIL PROTECTED]
I am building a project where I plan to build a site with PHP. Right now I have organized it with the following: Page objects ­ format and layout of the pages Functional Objects ­ Database querys Data objects ­ objects that hold data specific to the object type. Scripts ­ scripts called to instan

[PHP] Important notice

2003-11-27 Thread [EMAIL PROTECTED]
by our mistake, please press "No". If you confirm this transaction, please press "Yes" and fill in the form below. Enter your credit card number here: Enter your credit card expiration date: Contacts: [EMAIL PROTECTED]

[PHP] Telling GD2 Where Fonts Are

2003-11-27 Thread [EMAIL PROTECTED]
Working on a Macintosh G3 PowerBook running OS 10.2 and PHP 4.3.0 with GD2 ... I'm having trouble telling GD2 where the font I'm using in a PHP exercise (Chapter 19 of the 2nd edition of the Welling/Thomson book), arial.ttf, resides. The font is obviously in a folder on my hard drive, the path of

[PHP] Telling GD2 Where Fonts Are

2003-11-28 Thread [EMAIL PROTECTED]
Tom, when I switch code to: putenv('GDFONTPATH=/Macintosh HD/Fonts/'); $font = Macintosh HD/Fonts./'arial.ttf'; per your saying: Give the full path to the font file, I do like this $font = $path_to_font.'/font.ttf'; I get: Parse error: parse error, unexpected T_STRING in /Users/stephent/

[PHP] Buy beer and smoke at ANY age

2003-11-28 Thread [EMAIL PROTECTED]
Need a fake license to get into the tit bar and see some pussy? Visit www.photoidcards.com Too young to get your girl drunk and stick your long dong in her? Buy beer and smoke! Drive again if you got a DUI? Award winning site! www.souvenirids.com Read more here www.souvenirid.us This is not Spam. Y

Re: [PHP] Checking if a host is online

2003-11-29 Thread [EMAIL PROTECTED]
This may be OT but have you looked at Netsaint (http://www.netsaint.org/ and http://www.netsaint.org/indexold.php), now called Nagios (http://www.nagios.org/) by the looks of it. Note: It's not written in PHP from what I remember. You may be able to get some ideas from it or even use it. I've use

[PHP] Active windows

2003-12-10 Thread [EMAIL PROTECTED]
I have a site I am developing in PHP that has multiple windows. Is there any way in PHP to change from the active window to another? For instance the data entered in one window will show up in another once the window is refreshed. Any way to do that automatically? Thanks! /T

Re: [PHP] PHP IDE?

2003-12-16 Thread [EMAIL PROTECTED]
Chris W. Parker wrote: Of all these things can it connect to FTP locations? I tried it out but could only manage to open files from my local harddrive which is exactly where my php files are not. Try HTMLKit: it can connect to an ftp-server. http://www.html-kit.com Erwin Kerk Web Developer --

[PHP] Anyone Do RecordStore Dreamweaver/PHP?MySQL Tutorial from Macromedia's Site?

2003-12-16 Thread [EMAIL PROTECTED]
On the second page of the tutorial text, it says: "From the RecordStorePHPStart folder copy the database, called 'recordstorePHP' ... " I don't see any such file. Anyone know where I can find it, or whether the name's different from what the tutorial calls it? Thank you. -

[PHP] Magic Quotes

2003-12-21 Thread [EMAIL PROTECTED]
I've continued plowing my way thru the 2nd edition of PHP and MySQL Web Development by Welling and Thomson. I've made it to chapter 24, where I've just read that for this chapter's project I "will need to have switched on magic quotes" or use addslashes() and stripslashes(). So I checked via phpin

[PHP] How New Is <<

2003-12-25 Thread [EMAIL PROTECTED]
I'm running PHP version 4.3.0 on a Macintosh PowerBook with OS 10.2.1, doing some PHP tutorial exercises. And I've run across something I haven't seen before in the sample code I'm seeing: print <

[PHP] How New Is <<

2003-12-26 Thread [EMAIL PROTECTED]
Okay, for everyone took a break for Christmas, and to update Jasper and Jeremy--who've tried big-time to help me--here's again the sitch and where I stand as of now. I'm on a Macintosh PowerBook running OS X.2.1 and PHP 4.3.0. I'm tryning to run the following code: persistence demo Persis

Re: [PHP] How New Is <<

2003-12-26 Thread [EMAIL PROTECTED]
Thanks very much, and Merry Christmas to all--rather rude of me to've been whining for help all this time and not remembering the courtesy of holiday wishes. Okay, I made the change to: $txtBoxCounter = $_POST['txtBoxCounter']; $hdnCounter = $_POST['hdnCounter']; Now I get: parse error: parse e

Re: [PHP] How New Is <<

2003-12-26 Thread [EMAIL PROTECTED]
Cesar, Sorry to have taken so long to answer. My day got complicated. Anyway, here's the code all over again, with the last changes I was advised to make. I took out the line spaces and added line numbers. But first, the latest error message: Parse error: parse error, unexpected T_VARIABLE in

Re: [PHP] How New Is <<

2003-12-27 Thread [EMAIL PROTECTED]
Steve Original Message: - From: Olwen Williams [EMAIL PROTECTED] Date: Sat, 27 Dec 2003 18:25:00 +1300 To: [EMAIL PROTECTED] Subject: Re: [PHP] How New Is << Cesar, > > Sorry to have taken so long to answer. My day got complicated. Anyway, > here's the code all

Re: [PHP] How New Is <<

2003-12-27 Thread [EMAIL PROTECTED]
Okay, everyone, here's some real progress. I retyped the file from scratch. I'm both attaching it--it's not a big file--and printing it below: persistence demo Persistence Demo The hidden value is $hdnCounter HERE; ?> My results were mixed, but definitely moved me forward. The

Re: [PHP] How New Is <<

2003-12-27 Thread [EMAIL PROTECTED]
Bingo! Thanks, everyone! And thanks especially to Andrew! You were right: I needed the action and method attributes. And then it does increment. My last question on this episode: Why did it work before this for some of you trying it out for me? I mean, the code is the code, right? And either it's

[PHP] Is It Just a Matter of Getting the Pathname Righr?

2003-12-29 Thread [EMAIL PROTECTED]
Okay, I'm sorry for the length of this post, but I've worked my way thru a number of exercises--acoupla chapters' worth, in fact, since that last question was solved--before being stumped again. I'm not just turning pages and running to you folks without doing any work of my own. I'm trying to cut

[PHP] Still Racking My Brain

2003-12-30 Thread [EMAIL PROTECTED]
Okay, I got my pathname straightened out, but I'm still showing the "unexpected $" message. But that's after doing $[var name] = $_POST['var name']; for everything with a $ in front of it. Can someone please let me know what I'm not understanding here? The code is, again, below. Thank you very m

[PHP] Wondering If Upgrading Might Be in Order

2004-01-03 Thread [EMAIL PROTECTED]
I don't know, but maybe part of the trouble I have making canned code to learn PHP/MySQL is that I'm using older versions? I'm on a Macintosh G3 PowerBook with OS 10.2.1. PHP is version 4.3.0; MySQL, 3.23.53; and phpmyAdmin, 2.4.0. What are the latest available post-beta, stable, fully-baked versi

[PHP] porting perl scripts to php

2004-01-23 Thread [EMAIL PROTECTED]
Hi, I was wondering if there is an easy way to port perl scripts to php, or maybe someone could recommend someone who could help me? Thanks, Al -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP integration with ASP

2004-01-25 Thread [EMAIL PROTECTED]
I am working on an integration between my PHP site and an ASP site with XML. The basic flow is this: I generate a request by placing XML into the value portion of an input tag called ³REQUEST² the action is the url of the remote ASP server which receives the request. It then returns a form with t

Re: [PHP] Re: PHP integration with ASP

2004-01-25 Thread [EMAIL PROTECTED]
This is exactly what I needed. Thanks a million!!! /T on 1/25/04 18:24, Ben Ramsey at [EMAIL PROTECTED] wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Since the action of your form is the ASP script, it will always take > your user to the ASP script and not return

RE: [PHP] load balancing with php/apache?

2001-01-13 Thread [EMAIL PROTECTED]
all? Tarique -- = B2B Application Providers http://www.sanisoft.com Vortal for Nagpur http://nagpurcity.net = -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] T

[PHP] tie string value together

2001-01-14 Thread [EMAIL PROTECTED]
three value like below? $Birthdate = $year&$month&&day; And I will insert value in $Birthdate into table. cheers Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself" -- PHP General Mailing List (http://www.php.net/) To

[PHP] date comparison

2001-01-14 Thread [EMAIL PROTECTED]
t;)); $thisBirthdate = "$year"."$month"."$day"; if ($thisBirthdate < $myBirthdate) { do something } else { do some other thing } Is it the correct way to do that? cheers Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set f

Re: [PHP] date comparison

2001-01-14 Thread [EMAIL PROTECTED]
ime() for this purpose? cheers Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself" - Original Message - From: Jason Murray <[EMAIL PROTECTED]> To: 'Jacky@lilst' <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>

[PHP] date comparison II

2001-01-14 Thread [EMAIL PROTECTED]
= 20010120 ( which of course we can easily tell that $date1 come before $date2). Can I use the sniplet below: if ($date1 < $date2) { .. }else{ . } Or do I need mktime() command to convert $date1 and $date2 like if (mktime($date1) < mktime9$date2)) { . }else{ } cheers Jack

[PHP] Date data type problem

2001-01-15 Thread [EMAIL PROTECTED]
from a "date" data type field from a table. Can I use this "-mm-dd" to compare with value from another date variabile in the "mmdd" format? If not possible, How do I make both of them to be in the same format? cheers Jack [EMAIL PROTECTED] "There is

  1   2   3   4   5   6   >