[PHP] Can someone explain this????

2001-09-21 Thread Dallas K.
try this when u get a sec. its weird... In Microsoft Word, start with a blank page and type the letters NYC in all caps. Highlight the letters and change to the largest font size, 72 points. Now change the font itself to Webdings . that's not all. Now change the font

[PHP] Fw: Show of American Solidarity - Read pass on

2001-09-13 Thread Dallas K.
- Original Message - From: Steve Walker [EMAIL PROTECTED] To: Info [EMAIL PROTECTED] Sent: Thursday, September 13, 2001 11:09 AM Subject: Show of American Solidarity - Read pass on Tomorrow is U.S. Color day. Red, White Blue should be worn in honor of our fellow Americans that

[PHP] Time.com Interactive Memorial for the WTC Attack

2001-09-13 Thread Dallas K.
http://www.time.com/time/nation/article/0,8599,174659,00.html

[PHP] Worth reading

2001-09-13 Thread Dallas K.
Worth reading Written by Leonard Pitts, a writer for the Miami Herald. Published Wednesday, September 12, 2001 We'll go forward from this moment. It's my job to have something to say. They pay me to provide words that help make sense of that which troubles the American soul. But in

[PHP] Trunkated zeros..... how to fix?

2001-09-05 Thread Dallas K.
I am having the problem that Mysql is truncating the zeros from both the int and char fields when I try to insert How can I fix this. example: 0123 in PHP = 123 in mysql 3210 in PHP = 321 in mysql but I need that zero how do I keep mysql from doing this?

Re: [PHP] Newbie Question: Forcing a page load with no click

2001-08-21 Thread Dallas K.
use require_once(page); to include the page or use header(Location: page); to redirect to a different page - Original Message - From: LB [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 21, 2001 10:58 AM Subject: [PHP] Newbie Question: Forcing a page load with no

Re: [PHP] Directory Listing in an Array

2001-08-20 Thread Dallas K.
This is what I use file://DIR to start looking in $basedir = C:/Inetpub/wwwroot/_ActiveClientFiles/GLS/portfolio/; file://working DIR or the dir to change to. $wdir = web/; // list of DIRs var $dirlist; $filelist; $add_dir ;

[PHP] Name of an array???

2001-07-09 Thread Dallas K.
I need to echo the NAME of an array to the browser. when I try this all I get is Array. when I try to : echo $$array_name; I get nothing. How can I get the NAME of an array to the browser? Thanks.

Re: [PHP] Which DB abstraction ?

2001-06-22 Thread Dallas K.
Check out the ADODB.. They support 9 (maybe 11) different db's the code is easy and it works http://php.weblogs.com/ADODB We use their script .works well. - Original Message - From: Andrew Hill [EMAIL PROTECTED] To: Robert Mena [EMAIL PROTECTED]; php mailing list

Re: [PHP] List of included file names.

2001-06-20 Thread Dallas K.
Try using $PHP_SELF to get the name of the PHP script. - Original Message - From: Tim McGuire [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 19, 2001 11:30 AM Subject: [PHP] List of included file names. Hi, I searched the archives for this. For debugging

Re: [PHP] bad form...

2001-06-20 Thread Dallas K.
On a previous shopping cart, some of our fantastically complex scripts got so big that WE couldn't follow the logic too many conditional test, things started to conflict it was hell... so we found that it was better to break the processing code apart from the html. but build one file

[PHP] WHAT IF I DONT WANT TO USE ZEND......(help)

2001-04-09 Thread Dallas K.
But I still want to encode my scripts AND have them run on all differant platforms AND run with little or no setup by the user??? What other alternatives are out there? I know about APC but it only seems to run on windows. I need somthing that I can show my client here soon. so

[PHP] Script Encodeing??? other than Zend.

2001-04-03 Thread Dallas K.
I need a way to encode my scripts so that others can not read them. But I dont want to use the zend encoder? Is there anything else out there that can do what I need?

Re: [PHP] Sneaky solution

2001-04-03 Thread Dallas K.
If you want to check where your submit is comming from, then you need to check the REFERER url. do so by useing the global $HTTP_REFERER variable. global $HTTP_REFERER; if($HTTP_REFERER == "YOUR_FORM_PAGE_HERE") { //PROCESS CODE. } else { echo"Your a hacker, so BITE ME!!!"; }

[PHP] Need an array parser

2001-02-28 Thread Dallas K.
I am looking for somthing that will parse a multidimentional array of any size, and return a key / value listing for debugging Example: if I have an array such as... $arr[name] = dallas $arr[address][city] = austin $arr[address][state] = Texas $arr[somthing][somthing_else][blah1]=

[PHP] Need an array parser(CONT)

2001-02-28 Thread Dallas K.
I am looking for somthing that will parse a multidimentional array of any size, and return a key / value listing for debugging Example: if I have an array such as... $arr[name] = dallas $arr[address][city] = austin $arr[address][state] = Texas $arr[somthing][somthing_else][blah1]=