Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~817 People Reached
Favorite Forums
Favorite Tags
Member Avatar for jumbla

Hi guys and gals, I am using the following code as a searchbox at the top of my site. [code]<form name="classic" method="post" action="error.php"> Quicksearch: <input name="INPUT" id="INPUT" type="text" value="" /> <select name="countries" onchange="updatecities(this.selectedIndex); document.classic.action=(this.value)"> <option value="" selected>Choose a category</option> <option value="search1.php">Category One</option> <option value="search2.php">Category Two</option> <option value="search3.php">Category Three</option> <option value="search4.php">Category …

Member Avatar for jumbla
0
245
Member Avatar for jumbla

I am trying to set up an RSS feed for users that they can customise themselves. At the minute, you can customise the feed by appending parameters to a URL eg [url]http://example.com/feed?cat=-3&cat=-4&cat=-5[/url] would exclude categories 3, 4, and 5 (cat is the hardcoded constant name). Is there a way to …

0
56
Member Avatar for jumbla

I have a form that sends the value of my input box to search.php where I cature it using POST: [code]<form method="post" name="boxsearchform" action="search.php"> <input name="INPUT" id="INPUT" type="text" value="" /> <input type="image" name="search" src="searchboxgo.gif" /> <select name="choosevar"> <option value="title">Title</option> <option value="colour">Colour</option> </select> </form>[/code] What I would like is to use …

Member Avatar for essential
0
128
Member Avatar for jumbla

Hello, this is hopefully a very easy one for you guys, but as a beginner I'm not sure how to do this correctly: I have a form [icode]<form method="post" name="boxsearchform" action="search.php"><input name="title" id= "title" type="text" value="" /><input type="image" name="search" src="go.gif" /></form>[/icode] that passes the variable of "title" to search.php. On …

Member Avatar for jakx12
0
116
Member Avatar for jumbla

Hi guys, I am trying to echo some output based on a variable in my PHP. I can code an if statement to echo the output if the variable is not empty [inlinecode] if (!$variable=='')[/inlinecode] but my problem comes if the variable returns the value "N/A". If it returns N/A …

Member Avatar for jumbla
0
106
Member Avatar for jumbla

Hi guys, I have a simple form that takes a search input and fires it off to page1.php: [code=html]<form method="post" action="page1.php"><input name="title" id="title" type="text" value="" /> <input type="submit" name="search" value="Search" /></form>[/code] I would like to be able to select which page the query is fired off to based on a …

Member Avatar for kanaku
0
166