[PHP] Re: Random number Question

2002-04-29 Thread Dan Koken
OOPS! You are right on.. I noticed my error after I sent it. The name='guess' was on the input.?? Daaa! it's Monday .. OK!! This should work: === The computer has picked $another number between 1 and 10. Guess the number and you win! Enter your gu

Re: [PHP] Hashes in strings

2002-05-02 Thread Dan Hardiker
n strings"; will output "I can NOT use Array[var2] in strings". For this you have to jump out of the string and use contcatination... eg: $str = "I can use ".$hash[var][var2]." in strings"; will output "I can use Elephant in strings". Hope that help

[PHP] CVS handled PHP projects

2002-05-02 Thread Dan Hardiker
-- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Stupid question

2002-05-02 Thread Dan Hardiker
stead of using number_format for truncation use substr. i.e: echo substr($var, 0, 5); to get 3 dp. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Opinions Wanted

2002-05-02 Thread Dan Hardiker
listed btw) you require. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd > Just a general question of the best way to do it ! > I've got a job search site with mysql at the back of it ! > You choose on the first page - type of job, where and

Re: [PHP] Test if a daemon is running...

2002-05-02 Thread Dan Hardiker
multitude of ways and use the resulting matrix to determine. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd > Hello everybody, > > I would like to know an easy way to check is a daemon is running. > > What do you think is the best? Try

Re: [PHP] CVS handled PHP projects

2002-05-02 Thread Dan Hardiker
ocumentation at cvshome.org (man that was a labourous task) and I still dont think I grasp it fully... guess its time to jump in at the deep end. Thanks -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd > At 10:08 AM +0100 2/5/02, Dan Hardiker wrote: >

RE: [PHP] Test if a daemon is running...

2002-05-02 Thread Dan Hardiker
in normal execution (or you dont have access to it) ... then your gonna have to do it the long winded way (greping out unique attributes from a ps auxww / sockstat etc). Good luck -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd > I would like to mo

Re: [PHP] PRIMARY KEY vs. INDEX

2002-05-02 Thread Dan Hardiker
off topic. http://www.mysql.com/doc/ - Dan > Christoph, > > Indexes are built on key fields, so yes. When a field is identified as > a key it is indexed. > > To answer your second question, it is the index which maintains the > uniqueness of a field. > > A book is a

Re: [PHP] page reloading

2002-05-02 Thread Dan Hardiker
t;exit;" with "fclose( $fp );". Please note that headers must be sent before any other output. What you are trying to achieve can be done with refresh headers (either html-meta or http). -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Multiple mails to be sent from checkbox selection

2002-05-02 Thread Dan Hardiker
(you can find simple instructions on the http://www.php.net/mail page in the user comments). If METHOD="post" then use $_POST, and if an old version of PHP is being used then use $HTTP_POST_VARS / $HTTP_GET_VARS. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer

Re: [PHP] Hashes in strings

2002-05-02 Thread Dan Hardiker
t;.$user->name." is age ".$user->age.". ".(($user- >birthday==$today)?"Happy Birthday!").""; but thats getting out of the scope of the question heh -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] New Session Variable unset doesn't work

2002-05-03 Thread Dan Hardiker
special way to unset the new Session variables? Seen as you used session_register to set the session variable, it would make sense for you to use session_unregister to do the inverse. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General

Re: [PHP] problem with fread

2002-05-07 Thread Dan Hardiker
le pointer ($fp) in 4096 byte blocks (or chunks), and the while will keep pulling the chunks until there is nothing left to pull. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] problem with fread

2002-05-07 Thread Dan Hardiker
t;http://whatever.com/file.html";; // whatever you wanna pull >> from >> >> if ($fp = fopen($url, "r")) { >> while ($tmp = fgets($fp, 4096)) $output .= $tmp; >> fclose($fp); >> } >> >> echo "The URL's content

Re: [PHP] Registering an Array in a Session

2002-05-07 Thread Dan Hardiker
> I am trying to register an array in a session, but am having no luck. [..] > where fieldtext is the name of a field on the form, and $page is the > page number, which increases by one each time the form is submitted. That should get you started. -- Dan Hardiker [[EMAIL PROTECT

Re: [PHP] permissions issue under NT?

2002-05-07 Thread Dan Hardiker
e_path" from "/tmp" to "c:/temp" (or where-ever you wish it to go) -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Creating mail account on Linux server

2002-05-07 Thread Dan Hardiker
side of PHP (eg: how would you go about the problem using shell scripts / command line typing) This will give the people who try to help a better impression of the situation and give you more targeted advice. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd

Re: [PHP] permissions issue under NT?

2002-05-07 Thread Dan Hardiker
> Dan - It seemed pretty obvious to me too, but again, the ini file > hasn't changed since the whole thing worked. What has changed are the > permissions under NT. I've tried changing the /tmp permissions, but > the combinations are considerable, and I don't have ti

Re: [PHP] Creating mail account on Linux server

2002-05-07 Thread Dan Hardiker
that ;) heh Jason: what dya recon on people being licensed to be able to run a unix style operating system? heh Hell lets license people to use computers. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Creating mail account on Linux server

2002-05-07 Thread Dan Hardiker
very easily create a user account on your system and then just walk straight in?? Given your current attitude (and awareness) of security, I doubt that it would take long for your machine to be anhilated. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative

Re: [PHP] Announcement: Smarty template engine 2.1.1 released

2002-05-07 Thread Dan Hardiker
> This is a minor bug fix release. Wasnt aware that php-general had incorporated a channel for product plugging and advertisment?! -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Problem with object

2002-05-10 Thread Dan Hardiker
) { if ($aLines[$key]->host == "") $aLines[$key]->host = "Teststring"; print $aLines[$key]->host."\n"; // prints "Teststring" } That way your altering the master array and not the copy -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: randomize?

2002-05-10 Thread Dan Hardiker
bility. = $groups) $cnt = 0; } // Return return $return; } // Replace these with the items you want, and specifiy 4 groups $items = array(1,2,3,4,5,6,7,8,9,10,11,12,13,14); $result = randGroup($items, 4); echo ""; print_r($result); echo ""; ?> -- Dan Ha

Re: [PHP] Script executes for longer than 30s [SECURITY CONCERN]

2002-05-13 Thread Dan Hardiker
> keeps on growing and growing, way past 30seconds. My php.ini file is > definately set to 30s timeout. Is there something wrong or do I have a > misunderstanding of the timeout workings? > > Thanks > ' > > > -- > PHP General Mailing List (http://www.php.net/) &

Re: [PHP] Script executes for longer than 30s

2002-05-13 Thread Dan Hardiker
from the previous page via text field. >>> >>> Whe I test this and do something like " ping 192.168.0.2", the page >>> keeps on growing and growing, way past 30seconds. My php.ini file is >>> definately set to 30s timeout. Is there something wrong or d

[PHP] Question about string replace -PHP

2002-05-13 Thread Dan McCullough
to. Any help .. = dan mccullough "Theres no such thing as a problem unless the servers are on fire!" __ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch

Re: [PHP] is $HTTP_REFERER worth trusting?

2002-05-16 Thread Dan Hardiker
x minutes (or hours / days) then serve up the generated information from the table. This would mean that your db no longer gets hammered if malitious users were to launch 5000 requests at it in the space of 10 mins, it would just do the big DB operation the once. -- Dan Hardiker [[EMAIL PROTE

RE: [PHP] is $HTTP_REFERER worth trusting?

2002-05-16 Thread Dan Hardiker
security is far better than none! Just making sure that everyone is aware of the consequences and implications. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: help with arrays

2002-05-16 Thread Dan Hardiker
;] += 1 I think the problem here is your understanding on how array key's work. The following method would be far more appropriate: follow or have I lost ya? -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] is $HTTP_REFERER worth trusting?

2002-05-16 Thread Dan Hardiker
gets hammered if malitious users were to launch 5000 requests at it in the space of 10 mins, it would just do the big DB operation the once. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Using php as a scripting language within cron jobs?

2002-05-17 Thread Dan Hardiker
This will warn you that it is about to create a binary and not a module. After a make install it will usually end up in /usr/local/bin/php for you to use as your shell interpretor. (Follow up email regarding security to follow from a linx post). -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Sof

Re: [PHP] Using php as a scripting language within cron jobs?

2002-05-17 Thread Dan Hardiker
nary... and you could have 3 binarys, one with sockets & pcntl enabled, one with dom & xml enabled, and one with everything enabled... etc. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Using php as a scripting language within cron jobs?

2002-05-17 Thread Dan Hardiker
ds what your after doing... experimentation is the key, and imho you should stick to the binary for shell stuff and the module for web stuff. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Using php as a scripting language within cron jobs?

2002-05-17 Thread Dan Hardiker
lint) -m Show compiled in modules -i PHP information -h This help [14:03:52][dhardiker@amnesiac]:~$ everything there is pretty self explanitory... as is the reason for using option q ;) -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems

Re: [PHP] Variables in PHP: public vs. private

2002-05-17 Thread Dan Hardiker
r own. PHP has never claimed to be fully OOP compliant infact it has quite blatently stated that its not. I hope that the time will come when PHP has much more OOP support like other languages (such as C++, delphi etc). -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engine

RE: [PHP] Using php as a scripting language within cron jobs?

2002-05-17 Thread Dan Hardiker
execute it (unless you locked it down which is silly when you could just run it locally yourself). Also the data is going over HTTP which would easily be intercepted with ethereal / tcpdump etc. I still *strongly* recommend compiling a binary if only for purely security based precautionary reasons.

RE: [PHP] Looking for web based email

2002-05-17 Thread Dan Hardiker
;) - Dan > http://nocc.sourceforge.net/ > -Jared > > -Original Message- > From: Craig [mailto:[EMAIL PROTECTED]] > > I am in the process of developing a website with a webmail system > similar in functions to hotmail > Does anyone have any suggestions for where t

Re: [PHP] PHP and MySQL

2002-05-17 Thread Dan Hardiker
details to the world?! I gonna have to write an article on how to communicate securely over the internet. (not just with PHP, but with the data you communicate in the messages as well!!) -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem with sending information with quotes

2002-05-17 Thread Dan Hardiker
> Turn magic_quotes off. Check the manual for full details. or use stripslashes() ... rtm ;) -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP,Apache disabled FTP?

2002-05-18 Thread Dan Hardiker
Unless your using IIS to serve your FTP ;) That would go belly up if youve got another http processes running. More information about your setup is required for us to help further. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer -- PHP General Mailing List (http://www.php

[PHP] Re: Using PHP for NULLs

2002-05-18 Thread Dan Koken
I do believe it is a MySql question!! What's wrong with the old standard way as: $result = mysql_query(" SELECT *, if (last_name is NULL,'zzz end',last_name) as last_name_sort FROM new_miatapix ORDER BY last_name_sort LIMIT $page, 20")

Re: [PHP] Problem with mktime()

2002-05-20 Thread Dan Hardiker
> $startDate['Jungfrau'] = mktime (0, 0, 0, 08, 24, 2000); > $startDate['Waage']= mktime (0, 0, 0, 09, 24, 2000); Replace 08 and 09 with 8 and 9 respectivly and you will have the effect you desire. -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Syste

Re: [PHP] Executebale code from a databse

2002-05-22 Thread Dan Hardiker
the two lines of code? > > I'm using Win 98, Apache 1.3.19, PHP 4.2.0 and MySQL but I'm not sure > which version! (fairly recent though) > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- Dan H

[PHP] Array question - Please help

2002-05-23 Thread Dan McCullough
Here is the problem. I have over 60 subdomains to check on a regular basis. I wrote a php script that gets a list from a text file and then checks whether it can open that domain/subdomain. That works great. My problem is that everything is lumped together, so I have to scan a list of 60 na

Re: [PHP] PHP script and external C program

2002-05-28 Thread Dan Hardiker
mple: > > /bin/mycommand < $variable > $parsed_variable > or > $variable | /bin/mycommand | $parsed_variable > > > > > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- Dan Hardiker [[EMAIL PROTECTED]] ADAM Software & Systems Engineer First Creative Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] (Unlink(file) == rm file) ? (ignore this mail):(explain diffs);

2002-05-28 Thread Dan Lowe
r links. This is exactly what rm does, though. -dan -- The process for understanding customers primarily involves sitting around with other marketing people and talking about what you would to if you were dumb enough to be a customer. -Scott Adams, "The Dilbe

[PHP] regexp magic

2002-05-28 Thread Dan Harrington
Greetings everyone, I'm trying to do some regexp magic and just can't seem to get it done with PHP. Basically I want to evaluate a word and if the last character of the word is an 's', to knock it off, unless there are two consecutives at the end of the word. So 'boys' would become 'boy' and

Re: [PHP] Re: Speed comparison of PHP vs. PERL (not conclusive)

2002-06-01 Thread Dan Lowe
Previously, Manuel Lemos wrote: > > Your measures do not distinguish between the compile time and execute time. > > I don't know about Perl, but since PHP 4, Zend engine first compiles PHP > code into opcodes and only then it executes the code. Perl is compiled internally prior to execution.

[PHP] Unsuscribe

2002-02-27 Thread Dan Dougherty
Please unscribe me from this list I did not sign up for the stuff

[PHP] Weird INCLUDE / mySQL problem

2002-03-16 Thread Dan Tappin
e the sort order gets lost. In all cases I have the ORDER BY toc_order which are my 10,20,30,35 values in each row. Can anyone shed some light on this issue? Here is a link for an example: http://test.oilfiielddepot.com/test Please CC me as I am on digest mode. Thanks, Dan Tappin ([EMAIL

Re: [PHP] Create Email POP accounts with PHP

2002-03-22 Thread Dan Harrelson
I am a newbie and can't tell you how to do it, but I know that the book I am reading can! Chapter 27 is titled "Building a Web-based Email Service". The Book is title "PHP and MySQL Web Development" and I like it alot. It was recommended on the mysql.com. http:/

Re: [PHP] Does anybody use UltraDev?

2002-03-22 Thread Dan Harrelson
kt doesn't support this. Nor, do I believe, does it support joins for retrieval of data. http://www.interakt.ro/products/PHAkt/index.php Either way, I use Ultradev quite a bit and dig on it. -Dan --- "::: rObEr2 :::" <[EMAIL PROTECTED]> wrote: > Hey! > >

Re: [PHP] e-mail list app

2002-03-25 Thread Dan Harrelson
Check out Ciao EmailList Manager: http://www.technobreeze.com/php/emaillist/ -Dan --- "Michael A. Peters" <[EMAIL PROTECTED]> wrote: > Anyone know of a free app that allows users to submit- > > name, nickname, e-mail addy > > app sends a url confirm to e-mail

Re: [PHP] HTTP_REFERER

2002-03-25 Thread Dan Harrelson
omain.com"; "http://xxx.xxx.xxx.xxx"; "http://xxx.xxx.xxx.xxx/"; You'll have to check for all of them -Dan --- tom hilton <[EMAIL PROTECTED]> wrote: > Hi, I am using the $HTTP_REFERER variable to ensure that users of a > website > are getting to a cer

[PHP] Sending a header redirect mid-page

2002-03-28 Thread Dan Tappin
page do I need to call a closing ob function after my $dbfail code if the connection is successful and my redirect ob_end_clean(); call is not made? Any help would be greatly appreciated. Thanks, Dan P.S. Please CC me/the list as I am on Digest Mode :^) -- Dan Tappin Wavefront Communications Limite

Re: [PHP] Sending a header redirect mid-page

2002-03-28 Thread Dan Tappin
>> -Original Message- >> From: Dan Tappin [mailto:[EMAIL PROTECTED]] >> Sent: Thursday, March 28, 2002 12:36 PM >> >> My only concern is that I am adding another mysql_connect and > > Why do it twice? The connection will still be there later in the s

RE: [PHP] post request

2002-04-03 Thread Dan Harrington
CURL? http://curl.haxx.se And I quote: "Curl is a tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and LDAP. Curl supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading, kerberos, HTTP form based upload, proxies, cookies, user+

[PHP] Apache Default File Include

2002-04-04 Thread Dan Tappin
with out need to remember to add the include. Thanks, Dan P.S. Please CC me as I am on digest

Re: [PHP] Apache Default File Include

2002-04-04 Thread Dan Tappin
Thanks... That is exactly what I was looking for. Dan > > go to the PHP online documentation and look in the configuration section. > > auto_append_file string > Specifies the name of a file that is automatically parsed after the main > file. The file is included as if it w

RE: [PHP] Manipulate the address field in the browser?

2002-04-09 Thread Dan Harrington
Sounds to me like an Apache Alias Directive is what you need. can you get at your apache configuration? :-) http://httpd.apache.org/docs/mod/mod_alias.html > -Original Message- > From: Erik Price [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 09, 2002 4:22 PM > To: Kevin Stone > Cc

[PHP] phpPgAdmin joins SourecForge

2001-10-19 Thread Dan Wilson
For full story, please visit http://sourceforge.net/forum/forum.php?forum_id=117841 It looks like a previous post didn't go through, so if this is a duplicate, please forgive me. -Dan [EMAIL PROTECTED] http://sourceforge.net/projects/phppgadmin -- PHP General Mailing List

[PHP] String breaking up

2001-10-26 Thread Dan McCullough
I was looking to take a string like Dan and return it like D A N is it the str function that does that = Dan McCullough --- "Theres no such thing as a problem unless the servers are on fire!" h: 603.444.9808 w:

[PHP] Breaking a string

2001-10-26 Thread Dan McCullough
I was looking to take a string like Dan or Dan is great and return it like D a n or D a n i s g r e a t is it the str function that does that and if so does someone have an example? thanks = Dan McCullough --- "T

Re: [PHP] String breaking up

2001-10-26 Thread Dan McCullough
> for ($i=0; $i > echo strtoupper($string[$i]); > > } > > > > That's about all there is to it! :) Use the strtoupper() function if you > > mean to have everything uppercase like in your example. > > > > Rick &

Re: [PHP] Running PHP from Telnet/Cron

2001-11-13 Thread Dan McCullough
dmin/sitemaint.php > /dev/null > > Has anyone seen this error before, and if so have you come up with a > solution? > > Thanks, > Robert > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECT

Re: [PHP] Re: Can If Else statements be split into code blocks??

2001-11-14 Thread Dan McCullough
he form I'm trying to insert, but with > > the form after the IF statement, it fails. Is what I want to do against > the > > rules? I'm converting an ASP script I have to PHP and I have it all > working > > under ASP. That means it should

[PHP] Quick question about no result

2001-11-15 Thread Dan McCullough
I want to show a default piece of information if my query returns no result, and what I mean by no result is the query for a store in a certain state doesnt exist. thanks dan = Dan McCullough --- "Theres no such thing

[PHP] Supplied argument is not a valid MySQL result

2001-11-15 Thread Dan McCullough
;]." ".$stores["city"].", ".$stores["state"]." ".$stores["zip"]."".$stores["phone"]." "; } } else { $store_name .= "Copeland Furniture Company StoreMain StreetB

Re: [PHP] Re: Supplied argument is not a valid MySQL result

2001-11-15 Thread Dan McCullough
Got it to work. I had made a change that deleted something, not sure what, but when I went back a revision it worked, and I just added back in the html that I needed to use, but I was more careful. --- Richard Lynch <[EMAIL PROTECTED]> wrote: > Dan McCullough wrote: > > >

[PHP] Database design/relationship basics book

2001-11-16 Thread Dan McCullough
MySQL specific, a query book and a database in general, please I have done database designs for small projects by trial and error and extending original schemas, I would like to learn to do it right the first time. So any suggestions will help. thanks in advance dan

Re: [PHP] WXFEED Weather Script

2001-11-20 Thread Dan McCullough
D] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > = Dan McCullough --- "Theres no such thing as a problem unless the s

Re: [PHP] WXFEED Weather Script

2001-11-20 Thread Dan McCullough
try this ... I dont read french and I am having some problems downloading. http://www.neteconomie.com/perl/navig.pl/neteconomie/guides/scripts/fiche/20010217163348 --- Dan McCullough <[EMAIL PROTECTED]> wrote: > I would like it as well. > --- Brian Paulson <[EMAIL PROTECTED]&g

Re: [PHP] Can PHP take input from the command prompt interactively?

2001-11-25 Thread Dan McCullough
ice C > > Please enter an option: 1 > ====== > > Thanks. > > David > > > = Dan McCullough --- "Theres no such thing as a problem unless the servers are on fire!" h: 603.444.9808 w: McCullough

[PHP] Need a script that will read Apache Log files and generate reports

2001-11-26 Thread Dan McCullough
Anyone have an idea, I know there are perl scripts, but I would have to set up Perl and other stuff on my server to do this ... I dont want to. Does anyone know where the access log reader/displayer can be found. __ Do You Yahoo!? Yahoo! GeoCitie

[PHP] Printing Reports

2001-11-27 Thread Dan Koken
inter, number of copies, print quality etc. Thanks for your help... Dan. -- 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: Printing Reports

2001-11-27 Thread Dan Koken
There are so many reports. The system I have is a manufacturing system, and currently contains some 400 programs. Some examples of reports are: Bill of Lading with bar codes Production reports Management and analysis Labels for lab analysis with bar codes Planning reports Quality assu

Re: [PHP] Printing Reports

2001-11-27 Thread Dan Koken
Thanks Dean; I like your idea a lot. They happen to be internet. If you have example code on your solution it would save me some time. Thanks again... I'm gonna try it. Dan... > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PRO

[PHP] Re: Printing Reports

2001-11-27 Thread Dan Koken
and others are just text files. Thanks again for all the help.. Dan -- 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] What kind of looping ?

2001-11-27 Thread Dan McCullough
1 FILE 2 FILE 3 >FILE 4 FILE 5 FILE 6 FILE 7 > > > I would image I would use a for loop, but I cant figure it out. > Can somone assist me ? > > Thanks, > Steve > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail

Re: [PHP] Printing Reports

2001-11-28 Thread Dan Koken
Thanks loads to everyone... Dan > > The print function sets focus on the report and then executes this.print(). > The print dialogue box will automatically pop up and the user can select > their own printer along with number of copies, etc. If you use HTML you can > even set pa

[PHP] Very interesting and challenging question

2001-11-28 Thread Dan McCullough
tlw 30 124 116.702 DNF Race time - 72:52.030 Average speed - 62.538mph Margin of victory - 1.944sec Caution flags - 7 # of lead changes - 3 Weather - Clear 70^ E 0mph thanks for any help ===== Dan McCullo

[PHP] Help anyone

2001-11-29 Thread Dan McCullough
I need to edit a entry into the database via an admin script, how do I work in a radio selection box, and populate it with the correct selection? = Dan McCullough --- "Theres no such thing as a problem unless the servers a

Re: [PHP] Help anyone

2001-11-29 Thread Dan McCullough
} //and if ($edit[single]=="1") { print "Single: Yes or No \n"; } else { print "Single: Yes or No \n"; } that works --- faeton <[EMAIL PROTECTED]> wrote: > Hello Dan, > > Thursday, November 29, 2001, 7:11:22 PM, you've written: > DM>

Re: [PHP] SMS

2001-11-30 Thread Dan McCullough
ks in advance, > > Daniel Berwig. > > > > -- > 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 admi

Re: [PHP] SMS

2001-11-30 Thread Dan McCullough
ks in advance, > > Daniel Berwig. > > > > -- > 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 admi

Re: [PHP] SMS

2001-11-30 Thread Dan McCullough
es anyone know how could I send data from php through SMS to a cel phone? > I simply can't find info about that. > > Thanks in advance, > > Daniel Berwig. > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail

Re: [PHP] SMS

2001-11-30 Thread Dan McCullough
That example I sent was from a place where they have the swsms shared object which you can get in a developers license, I havent actually tried it, but was looking at it for a project. --- Henrik Hansen <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] (Dan McCullough) wrote: > >

Re: [PHP] SMS

2001-11-30 Thread Dan McCullough
somewhere in here ... I'm not familiar with the actual object, but if you have success withit I would like to hear how you are doing with it. http://www.simplewire.com/developers/code/ --- Henrik Hansen <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] (Dan McCullough) wrote: >

Re: [PHP] How to work with MySQL tables WITHOUT telnet, SSH or PhpMyAdmin

2001-11-30 Thread Dan McCullough
Yes most shared hosts will not allow the creation of multiple databases. Just one, so you will have to make use with table creation. dan mccullough programming/enginnering 603.444.9808 --- Sverre Johan Tøvik <[EMAIL PROTECTED]> wrote: > At 15:19 -0500 30-11-01, [EMAIL PROTECT

Re: [PHP] BEST Book for Learning PHP/MySQL

2001-12-04 Thread Dan McCullough
both these technologies? Thanks! > > -- > 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] > = Dan McCullough --

[PHP] A few questions on switching redoing site in PHP

2001-12-04 Thread Dan McCullough
that processes between 150-250 orders and averages $65k a day, if PHP and MySQL can handle that, or would I have to go to something like MSSQL (I know I know MS and PHP .. hahahahahaha). All and any suggestions are welcome. dan mccullough web technology 603.823.5545 x

[PHP] freetype+gd+php not working

2001-12-04 Thread Dan Ramaley
local/apache \ --with-layout=RedHat --enable-module=most --enable-module=ssl \ --activate-module=src/modules/perl/libperl.a \ --activate-module=src/modules/php4/libphp4.a make make certificate TYPE=dummy make install ------

Re: [PHP] PHP Help required

2001-12-04 Thread Dan McCullough
cipate in this project? > > Regards, > Eddie Shipman (MrBaseball34 on XMBForum.com forums) > Austin Metro Baseball League > http://www.austinmetrobaseball.com > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] >

RE: [PHP] header("Location:blah...") - passing variables

2001-12-04 Thread Dan McCullough
hp.net/) > >To unsubscribe, e-mail: [EMAIL PROTECTED] > >For additional commands, e-mail: [EMAIL PROTECTED] > >To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > Sliante, > Richard S. Crawford > > http://www.mossroot.com > AIM: Buffalo2K I

Re: [PHP] PHP newbie alert

2001-12-04 Thread Dan McCullough
probably > cant use this. Dont let this deter you.. But it has a VERY steep > learning curve > > > -Andrew > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTEC

[PHP] Logic

2001-12-04 Thread Dan McCullough
ct, for some reason this isn't working. = dan mccullough "Theres no such thing as a problem unless the servers are on fire!" __ Do You Yahoo!? Buy the perfect holiday gifts

Re: [PHP] Logic

2001-12-04 Thread Dan McCullough
^--- Note these parentheses---^ > > Hope that helps. > > > At 05:28 PM 12/4/2001, Dan McCullough wrote: > > >Question. I am trying to check to see if a certain piece of code should > >be run. Here is an > >example. &

[PHP] md5 decrypt

2001-12-05 Thread Dan McCullough
Is there away to take a md5 encrypted password and decrypt it and give that to the client, if they fogot their password. = dan mccullough "Theres no such thing as a problem unless the servers are on

Re: [PHP] forms & PHP

2001-12-06 Thread Dan McCullough
ICQ: 11646404 Y!: rscrawford > MSN: [EMAIL PROTECTED] > > "It is only with the heart that we see rightly; what is essential is > invisible to the eye." --Antoine de Saint Exupéry > > "Push the button, Max!" > > > -- > PHP General Mailing List (ht

<    4   5   6   7   8   9   10   11   12   13   >