Search found 141 matches

by ilovetoast
Thu Feb 26, 2004 12:06 am
Forum: PHP - Code
Topic: javascript popup on mac
Replies: 7
Views: 846

Oh, forgot to mention I see no javscript errors that would stop this page from functioning in Safari. If you have it online somewhere I'll debug for Safari if you post a link.

peace
by ilovetoast
Thu Feb 26, 2004 12:04 am
Forum: PHP - Code
Topic: javascript popup on mac
Replies: 7
Views: 846

As an old school Mac evangelista, I would say check things out in Safari. If it works in Safari, don't worry about it. IE on the Mac is abandoned. It lags so far behind the PC version and behind the other Mac browsers as to border on unusable. Safari other non-IE browsers now constitue the MacOSX us...
by ilovetoast
Wed Feb 25, 2004 11:55 pm
Forum: PHP - Code
Topic: Testing Tools
Replies: 12
Views: 1549

I understand. The answer is seven.
by ilovetoast
Wed Feb 25, 2004 11:51 pm
Forum: PHP - Code
Topic: can the session and cookie work together??
Replies: 4
Views: 539

yes.
by ilovetoast
Wed Feb 25, 2004 11:40 pm
Forum: General Discussion
Topic: EVERYONE LOOK AT THIS!
Replies: 12
Views: 2775

I do so love the "look at what new useless animation I learned today" flash noob website.
by ilovetoast
Wed Feb 25, 2004 11:36 pm
Forum: PHP - Theory and Design
Topic: optimize php VS optimize the database
Replies: 15
Views: 8937

All things being said, I agree with McGruff 100%. But sometimes, it is nice to know what is the fastest way to accomplish a task, if for nothing more than to establish a personal best practice for coding. And certainly it was better than this evenings other social options I had to chose from unfortu...
by ilovetoast
Wed Feb 25, 2004 6:08 pm
Forum: PHP - Theory and Design
Topic: optimize php VS optimize the database
Replies: 15
Views: 8937

Very interesting issue. I've been wrangling with date storage mechanisms in my latest project as well.

I'm going to do some poking around and see what I can dig up. I'll post more when I know more.

peace
by ilovetoast
Tue Feb 24, 2004 9:52 pm
Forum: PHP - Code
Topic: javascript popup on mac
Replies: 7
Views: 846

Do you have it online somewhere? If you don't I have to make up some images just to check it out as the syntax is ok.
by ilovetoast
Tue Feb 24, 2004 5:29 pm
Forum: General Discussion
Topic: Kudos to I Love Toast
Replies: 8
Views: 2418

Thank you for the kind words. Always nice to find someone who benefits from something I contributed.

peace

grateful toast
by ilovetoast
Tue Feb 24, 2004 4:06 pm
Forum: Databases
Topic: Dating Website
Replies: 3
Views: 741

The parse error is due to line 20

change:

Code: Select all

'$auth', '$auth_email');
to:

Code: Select all

'$auth', '$auth_email')";
peace
by ilovetoast
Tue Feb 24, 2004 2:56 pm
Forum: PHP - Code
Topic: can i use addslashes towrite
Replies: 11
Views: 751

Alright, here's my explanation. PHP has two directives, magic_quotes_runtime and magic_quotes_gpc, which affect the use of escaping backslashes in certain operations. The magic_quotes_gpc directive covers GPC operations (Get/Post/Cookie). The magic_quotes_runtime directive covers most functions that...
by ilovetoast
Tue Feb 24, 2004 1:55 pm
Forum: General Discussion
Topic: PHP promotion girls?
Replies: 11
Views: 1843

Somethings brighten my day. This was one. Thank you.
by ilovetoast
Tue Feb 24, 2004 1:28 pm
Forum: PHP - Code
Topic: Please tell me that PHP can do this?
Replies: 4
Views: 434

Let there be code:

Code: Select all

$foo = "9180055512121234567";
$bar = substr($foo, 0, 12);

print $bar; // prints 918005551212
And it was good.

substr - Manual entry

peace
by ilovetoast
Tue Feb 24, 2004 1:21 pm
Forum: General Discussion
Topic: A new free alternative to phpMyAdmin
Replies: 25
Views: 3781

All sounds fine to me. I'll check it out this weekend in Safari. I don't have the time to fix any Safari problems I find, but I'll let you know of them. My interest is Mac-centric. I try to do what I can to encouraage that web projects are developed in a manner so as to allow standards compliant Mac...
by ilovetoast
Tue Feb 24, 2004 1:13 pm
Forum: Javascript
Topic: php and mac - problems
Replies: 24
Views: 7976

All done. A few notes: There were some styles of line-width: 1.5. As 1.5 is not an acceptable value, and as 1.5px would be nonsensical, these were deleted. If you know what you meant, you need to properly value the attributes and add them back in. There was a style of cursor: hand in one place. Hand...