Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
6
Posts with Upvotes
6
Upvoting Members
6
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
5 Commented Posts
~95.3K People Reached
About Me

Web Design and Hosting

Interests
Dance, Games, Web Design, PHP Scripting
Favorite Tags
Member Avatar for Dani

Howdy, Just started lurking here on Tuesday. Hope to make some useful contributions to the community at some point :cheesy: Dance

Member Avatar for jamesjoseph1
0
9K
Member Avatar for MrScruff

I think this tutorial will teach you most of what you need to know. [URL=http://codepunk.hardwar.org.uk/bjs19.htm]Making Universal Pop Ups[/URL]

Member Avatar for John_79
0
311
Member Avatar for DanceInstructor

menuWerx is a PHP class to generate a menu for your site. Options include: debug mode, horizontal or vertical orientation & hooks, optional inline styles, and strict or transitional modes. See an example at: [url]http://www.Clear-Mind.com/menuwerx/[/url]

Member Avatar for diafol
1
1K
Member Avatar for autocrat

I think you should listen to DaveSW :p Don't get too caught up on an ideal or concept, this has caused me many problems in the past.... My biggest problems with CSS arise when I get caught up in how I think it should work, instead of trying to find …

Member Avatar for austinluthers
0
260
Member Avatar for maclantis
Member Avatar for MeeraKotecha
Member Avatar for umcookeg

Maybe you could use an iframe? You can make the frame small so the user may not even know it is there. Load a form into it initially to call your php function and then read the results with the javascript once it reloads....

Member Avatar for rajeevphp2011
1
1K
Member Avatar for j-e

[PHP]$catarray= $_POST['catlist']; [/PHP] shouldn't need parenthesis. Have you tried: [PHP]print_r($catarray);[/PHP] I haven't pulled arrays from POST yet, so I'm not sure how it works. Here is a small script to output all the variables that are defined in php. You will be interested in the _POST section :) [PHP]$output = …

Member Avatar for codeintel
0
11K
Member Avatar for davec271

Where is your site hosted? The majority of issues that people have with getting Cake setup involve mod_rewrite.

Member Avatar for Reimo
0
267
Member Avatar for vssp
Member Avatar for belama

You will be happy to know that this works in Firefox, but not in Internet Explorer. I'm not sure what the exact problem is, but it has something to do with the DOM and browser compatibility. If I figure it out I will let you know.

Member Avatar for kedman1234
0
374
Member Avatar for kooben
Member Avatar for paradox814

Found this quote: > PHP does not support function overloading, nor is it possible to undefine or redefine previously-declared functions.[ and this code: Method overloading is however permitted. <?php class A { function A() { } function ech() { $a = func_get_args(); for( $t=0;$t<count($a); $t++ ) { echo $a[$t]; } …

Member Avatar for NuMessiah
0
430
Member Avatar for Dani

Are you using mod_alias? If so you should use the [PT] flag with mod rewrite rules.

Member Avatar for zuerich-finanz
1
8K
Member Avatar for Dark_Omen

These are the fuctions you need. I suggest you make a file called cookie.js and include in your html file like this: [HTML]<script type="text/javascript" src="cookie.js"></script>[/HTML] and the javascript to place in the cookie.js file: [CODE] // // Cookie Functions -- "Night of the Living Cookie" Version (25-Jul-96) // // Written …

Member Avatar for Taywin
0
1K
Member Avatar for rcasinillo_s

Are you sure you really want to do that? I think that for most applications you will be better off storing the image in a folder on your webserver and adding the location/details of the image to the database.

Member Avatar for metalix
0
4K
Member Avatar for Decency

Yes this should be possible. There may be some scripts already written to do this although I am not aware of them. You could try searches on google and yahoo to see what you can find. If you don't find anything useful, you will find most of the php functions …

Member Avatar for charvie
0
235
Member Avatar for Virii

Are you going to use PHP4 or PHP5? I think PHP5 is supposed to have more powerful XML parsing functions, but to be honest I don't know an awful lot about XML.

Member Avatar for nikesh.yadav
0
375
Member Avatar for Barefootsanders

GliderPilot, GUEST_NAME is inteneded to be a constant. It is not a varaible. The error is probably before line 59, as has already been mentioned.

Member Avatar for Barefootsanders
0
1K
Member Avatar for ipodgirl

Not really the solution you are looking for, but you could use a php script to cache the pages locally on your server. What are you trying to do exactly. I would be very careful using content from someone elses sight in this way.... Dance

Member Avatar for mktgmgr101
0
513
Member Avatar for Jak Dude
Member Avatar for hoffin
0
702
Member Avatar for DanceInstructor

If I have a long string of text in say a table cell, how can I make it break so it doesn't cause horizontal scrolling? Thanks :)

Member Avatar for joecap5
0
642
Member Avatar for MCAmy

One thing I see, this: [PHP] if (ereg("^([a-z]+)|[0-9]{2,2})$", $keyword[$i++])) $validKeyWord= false[/PHP] should probably be: [PHP] if (ereg("^([a-z]+)|[0-9]{2,2})$", $keyword[$i++])) { $validKeyWord= false; }[/PHP] Dance

Member Avatar for rokape
0
167
Member Avatar for bratbo

If I'm not mistaken PHP automatically handles garbage collection and cleanup when a session ends. That is provided you haven't declared any custom session handlers using session_set_save_handler().

Member Avatar for thewebhostingdi
0
124
Member Avatar for jbennet

I think its great. It's to the point and succinct. It makes it look easy (which it is for the most part). If somebody has a problem, then its a good reason for them to post and everyone can benefit from that discussion (and possibly use that info to improve/udate …

Member Avatar for inckie
1
746
Member Avatar for mikeandike22

You can only edit your post for an hour (i think) after you post it origionally. So to get it changed he will need to seek help from an mod or admin.

Member Avatar for mattgwood23
0
831
Member Avatar for squeegee

Don't. I have a friend who has used Filemaker to create some applications. They work great, but he has had alot of trouble trying to port them to the web. To get any real flexibility you will have to buy the $2500 licence for the web extension or whatever it …

Member Avatar for Bellezzabacher
0
241
Member Avatar for techie

The simplest way is to have php write the info you want into the page as javascript, for ex: [CODE]<script type="text/javascript" language="javascript"> <!-- <?php echo("firstVar = $var1;"); echo("2ndVar = $var2;"); ?> // --> </script>[/CODE]

Member Avatar for Cilice11
0
654
Member Avatar for DanceInstructor

[CODE]Warning: Unknown(): Unable to call () - function does not exist in Unknown on line 0[/CODE] Has anyone seen this error or know what it means?? Thanks

Member Avatar for GrrUnknown
0
223
Member Avatar for chaom79