[PHP] Create Online Test Program

2003-01-03 Thread Devin Atencio
Dear PHP Users, I am in the process of trying to create an Online Program that will give questions and possible answers then score the test. I was wondering if anyone has done this type of thing already and might be able to give me some pointers on what the best method of doing this might be?

[PHP] mail problem Sendmail 8.12.4

2002-10-08 Thread Devin Atencio
stardust sendmail[84142]: g98HCIsQ084142: from=nobody, size=331, class=0, nrcpts=0, msgid=[EMAIL PROTECTED], relay=nobody@localhost Any ideas about what could be going on here? Devin Atencio -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mail problem Sendmail 8.12.4

2002-10-08 Thread Devin Atencio
, Devin Atencio wrote: I am trying to get PHP to send mail through my FreeBSD machine and my machine is running Sendmail 8.12.4, and I have the path to sendmail in my /usr/local/lib/php.ini. I am using PHP 4.2.3 but it fails to send mail. My /var/log/maillog shows the attempt but nothing

[PHP] XSLT - Sablotron

2002-09-05 Thread Devin Atencio
I am trying to find out a way I can pass a variable that is basically an XML document to xslt_process and make it all work. My script works if I have: $xp = xslt_create(); $result = xslt_process($xp, 'test.xml', 'test.xsl'); however, if I try to do: $xp = xslt_create(); $result =

[PHP] Floating point exception (8)

2002-06-26 Thread Devin Atencio
seconds. [Wed Jun 26 16:59:00 2002] [notice] child pid 85595 exit signal Floating point exception (8) Is there a fix for this? Devin Atencio -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Chat Program?

2002-06-14 Thread Devin Atencio
it and can recomment it ? Devin Atencio -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Formatting Time

2002-05-15 Thread Devin Atencio
I want to a kewl script that will format time from seconds. I have a script that returns the number of seconds a person has been an employee and I want to format it in human readable format like: 1 year 6 months 14 days, etc. Any help would be appreciated it.

[PHP] Regular Expressions

2002-04-23 Thread Devin Atencio
I need to check a variable to see if the format fits one of the following: [EMAIL PROTECTED] or *@domain.com or *@*.domain.com How can I do this with regex? Any help would be greatly appreciated. Devin Atencio -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Getting All Variables?

2002-04-19 Thread Devin Atencio
Is there an easy way in PHP to have it display to screen all the variables that it has in memory? So i can see what variables there is and what they are set to? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Reading Session File from /tmp directory

2002-04-18 Thread Devin Atencio
I am trying to read a session file from the /tmp directory then restore the PHP variables from this but I can't get it to work, i'm doing the following: $acontents = file(/tmp/sess_$sessid); $data = $acontents[0]; unserialize($data); $sessid is a valid session id, but unserialize

[PHP] Sessions / Serialized Data

2002-04-17 Thread Devin Atencio
If i have a session going with PHP4 and I want to basically pull the entire serialized data and then insert it into the database is there a variable that contains the serialized data or would I have to just basically read the /tmp/sess_sessid file and then save that into the database? -- PHP

[PHP] Sessions and transferring between sessions?

2002-04-16 Thread Devin Atencio
I was wondering if I had a session going under a non-ssl and then have the URL go to a secure session, the session Id changes, is there a way to keep the same session id so i don't loose any data in the non-ssl session? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Block IP Script?

2002-04-04 Thread Devin Atencio
I was wondering If I made a database to store a list of IP CIDR in a database to block, how I could take an IP of a customer coming in and find a quick way if it matches a blocked IP in the database? For instance, in the database I would store something like this: 208.219.20.0/24 Then if

[PHP] Incrementing number by .1 or substracting .1

2002-04-04 Thread Devin Atencio
could I do this? Any help would greatly be appreciated. Devin Atencio -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Emulating POST ?

2002-03-28 Thread Devin Atencio
I need to somehow write a PHP Script that will POST XML type stuff to UPS like this: ?xml version=1.0? AccessRequest xml:lang=en-US AccessLicenseNumberTEST262223144CAT/AccessLicenseNumber UserIdtestUser/UserId PasswordtestPW/Password /AccessRequest ?xml version=1.0? TrackRequest

[PHP] Talking XML over SSL with PHP?

2002-03-28 Thread Devin Atencio
I am trying to write a program that will talk to UPS. It appears that the requirements is that i must talk SSL and then submit XML type documents as a POST. Would it be easy in PHP to talk SSL via Socket Layer? Any help would be appreciated. -- PHP General Mailing List (http://www.php.net/)

[PHP] Reading PHP Session Files?

2002-02-18 Thread Devin Atencio
to the database, how can i do this? The session info in the database looks like this: a:1:{i:0;a:7:{s:2:id;s:16:Default identity;s:8:fullname;s:13:Devin Atencio;s:9:from_addr;s:0:;s:12:replyto_addr;s:0:;s:9:signature;s:0:;s:10:sig_dashes;i:0;s:9:sig_first;i:0;}}

[PHP] Imap-uw Horde::IMP

2002-02-14 Thread Devin Atencio
I am currently running an old version of imap v4 from FreeBSD 4.1, and I was going to install the latest 2001c library onto my computer. I realize that after installing the library i should recompile PHP, but is there any problems that anyone knows that will affect anything by doing this

[PHP] Encoding/Decoding

2002-01-29 Thread Devin Atencio
.---# # # # Devin Atencio [EMAIL PROTECTED] # # Sys Admin Dept # #_Oooo._# .oooO ( ) ( )) / \ ((_/ \_) -- PHP General

[PHP] Reading File into Array and Searching

2002-01-15 Thread Devin Atencio
Dear Users, I basically want to do the following. I have file that contains everyone that logs into our mail server a day and then I want to basically load that file into an array and then search the array to find out how many times that person logged in and then take the last login and

[PHP] Encoding Code

2002-01-04 Thread Devin Atencio
to have it decrypt the entire thing Correctly? __\/__ . / ^ _ \ . |\| (o)(o) |/| #.OOOo--oo--oOOO.---# # # # Devin Atencio [EMAIL PROTECTED] # # Sys Admin

[PHP] SWF and PHP 4.0.6

2001-09-13 Thread Devin Atencio
I am trying to get SWF installed into PHP for a customer and I am having some problems. I downloaded the file dist.99.freebsd.tar.Z and uncompressed the file. Then reading the page on swf on the PHP.net website I did as one user suggested and copied the libswf.a into the /usr/local/lib and then

[PHP] Back/Forward

2001-07-11 Thread Devin Atencio
I have a page that brings up the info on a rock, I wanted to add the functionality of doing like a next and previous option to go thru all the rocks in my database. I can't figure out how to exactly do this, could someone give me some help? -- PHP General Mailing List (http://www.php.net/) To

[PHP] Apache/PHP4 Question

2001-06-18 Thread Devin Atencio
? /'^'\ ( o o ) --oOOO--(_)--OOOo Devin Atencio ArosNet Systems Administration .oooO EMail: [EMAIL PROTECTED] ( ) Oooo. \ (( )- \_)) / (_/

[PHP] PHP 4.0.5 Apache 2.0

2001-05-03 Thread Devin Atencio
. /'^'\ ( o o ) --oOOO--(_)--OOOo Devin Atencio ArosNet Systems Administration .oooO EMail: [EMAIL PROTECTED] ( ) Oooo

[PHP] Finding Duplicate Numbers?

2001-04-17 Thread Devin Atencio
to do this? Thanks in advance. /'^'\ ( o o ) --oOOO--(_)--OOOo Devin Atencio ArosNet Systems Administration .oooO EMail: [EMAIL PROTECTED

[PHP] PHP4 CGI Problem

2001-03-09 Thread Devin Atencio
any ideas? /'^'\ ( o o ) --oOOO--(_)--OOOo Devin Atencio ArosNet Systems Administration .oooO EMail: [EMAIL PROTECTED] (

[PHP] PHP 4.0.4pl1 as CGI

2001-01-12 Thread Devin Atencio
) --oOOO--(_)--OOOo Devin Atencio ArosNet Systems Administration .oooO EMail: [EMAIL PROTECTED] ( ) Oooo