Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Teagle
- Original Message - From: "David Freeman" <[EMAIL PROTECTED]> To: "'Jason Teagle'" <[EMAIL PROTECTED]>; "'PHP Mailing List'" <[EMAIL PROTECTED]> Sent: Tuesday, June 04, 2002 1:58 PM Subject: RE: [PHP] MySQL - Creating T

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Teagle
thing, there's just too much of it. ---- _ _ o oJason Teagle < [EMAIL PROTECTED] v -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Teagle
ant to test code on your development box then > you're going to need an actual sql server to do it. That's no problem for me - I'm testing directly on the (remote) host anyway. Better to test where it's going to be finally then get it all working perfectly here and

[PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Teagle
quire downloading the full server - I don't _need_ the server, only a way to create a DB {:v( _ _ o oJason Teagle < [EMAIL PROTECTED] v -- PHP General Mailing List (http://www.php.net/) T

Re: [PHP] CHM Form Of PHP Manual? (Was: [PHP] Question regarding :: syntax)

2002-06-03 Thread Jason Teagle
le can be downloaded here: > > http://www.php.net/download-docs.php Hmmm... I swear I tried downloading that version (English) before and it didn't work - but it is fine this time. Thanks. -------- _ _ o

[PHP] CHM Form Of PHP Manual? (Was: [PHP] Question regarding :: syntax)

2002-06-03 Thread Jason Teagle
* bounce, bounce *Where could I get it from? I find self-contained help files s much easier... ---- _ _ o oJason Teagle < [EMAIL PROTECTED] v -- PHP General Mailing List (http:

Re: [PHP] Re: PHP & Hex Numbers

2002-06-03 Thread Jason Teagle
- Original Message - From: "Jonathan Rosenberg" <[EMAIL PROTECTED]> To: "Jason Teagle" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, June 03, 2002 3:18 PM Subject: RE: [PHP] Re: PHP & Hex Numbers > > When doing arithmetic in c

[PHP] Re: 'Pure' php vs 'mixed' (html + php)

2002-06-03 Thread Jason Teagle
xed between PHP blocks gets treated as if it had been echoed or printed by PHP, and thus does not appear if the 'if' test fails. Sorry to have misled you (I learned something today!). -- _ _ o oJason Teagle < [EMAIL PROTECTED] v

[PHP] Re: PHP & Hex Numbers

2002-06-03 Thread Jason Teagle
echo treats numbers as unsigned... When doing arithmetic in code, you should always be prepared to handle signed and unsigned. -- _ _ o oJason Teagle < [EMAIL PROTECTED] v -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: 'Pure' php vs 'mixed' (html + php)

2002-06-03 Thread Jason Teagle
you used mixed, they could simply read the source of the page to see that data... but with pure, the only source on the page is what PHP actually prints out, so they won't see anything they shouldn't. -- _ _ o oJason Teagle < [

[PHP] Re: newbie help please

2002-06-03 Thread Jason Teagle
get all entries of $Tags[] one at a time, and $key will be the name of the entry you seek (like 'issue-name'), and $value will be the value held at that entry. -- _ _ o oJason Teagle < [EMAIL PROTECTED] v -

[PHP] Re: echoing two varibles(newbie)

2002-06-03 Thread Jason Teagle
f they were words: echo "This is $DOCUMENT_ROOT at $row['location']."; or bundle them together as a string: echo "This is " . $DOCUMENT_ROOT . " at " . $row['location'] . "."; You can shove as many variables as you like into the

[PHP] Re: Variables - Using The Contents Of A Varibale Name Built Dynamically

2002-06-02 Thread Jason Teagle
niquely identifies the data being submitted. > > Just a thought... it is what I usually do... Won't that treat all radio buttons on the page as one group, instead of being separate groups for each form? -- ---- _ _ o o

[PHP] Variables - Using The Contents Of A Varibale Name Built Dynamically

2002-06-01 Thread Jason Teagle
rol names and their contents, and comparing the control name to my built-up name - but I was wondering if there's a more elegant way of doing what I wanted? Promise my next question to the group will be short {:v) -- -----

[PHP] Re: Not sure how to loop this...(Newbie)

2002-06-01 Thread Jason Teagle
$i < $num_results; $i++)" ) - which part do you feel also needs looping? -- ---- _ _ o oJason Teagle < [EMAIL PROTECTED] v -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Writing Files (Unix, Apache, PHP 4.0.X) [Newbie Alert]

2002-06-01 Thread Jason Teagle
lding a new temp file as I go, and modifying the data relevant to the user input d) Deleting the old file and renaming the new to replace it Sorry for all the questions, trying to get a grip on it. I'm used to C(++) and local programs, so I don't get