Search:
Type: Posts; User: santa
Search :
Search took 0.01 seconds.
Wow, great advice! However I came up with something totally odd. It does bot output all results in the same order my array is but all I actually need is the first result to be the same as the...
Is it possible to run a database query and order output according to a given array order?
I can convert array into a string:
$MemIDs = implode(",", $IDs);
Can I do something like:
...
I load a page with two default images and two radio buttons not selected. When either of the radio buttons gets checked I need to swap corresponding image.
I tried this but it does not seem to...
Ah, great.
What if I only need the first value to be all CAPS, 5 chars in length and the rest of the parameters are there just for the sake of SEO. Do I need to do anything with the flags?
Hello,
I have a. .htacces file with the following rule:
RewriteRule ^([A-Z]{5})$ dir/myfile.inc.php?profile=$1 [L]
What it does is checks the URL and if the link looks like:
What kind of script is used for status updates on this site below "Live on Gowalla": http://gowalla.com/
I see the following class
class="clearfix"
Which makes me believe it is something...
How many BODY tags are in a document. Why call it
#html, body { and not
body {
What's up with the width and height in BODY? Can CSS resize the browser? Ir car the body be less then 100%...
Great, thanks. I appreciate your insight.
Anyone notices anything else?
I received a CSS file form client. It just does not look that clean to me, and that's what I told a Project Manager.
I would like you to take a look at the first few styles and give me your...
I need to use this function because I must be able to specify the length of my key and it must be all alpha.
The problem I have now is that generator function creates a random key but each key...
I have a function that generates 5 character long random key.
function generator($lenght=5)
{
for($i = 0; $i <= $lenght; $i++)
{
$uniqueKey .=...
my bad... somehow I left ";" in .checked == true;
works now.
I have a form with 2 radio buttons.
I need to have a label "default" displayed on a page next to the appropriate list when either one checkbox is selected. The first should be onload.
I assume...
That was it. "Do" is a reserved word... What threw me off was that the FF worked fine...
I had the following function working OK:
function tabSubmit(num) {
if (num == 2) {
document.tabSelect.tab.value = "map";
} else if (num == 3) {
document.tabSelect.tab.value =...
please delete this thread
You can continue passing it to another page via $_GET method by appending to URL or add it to a session and retrieve it on another page..
$propid = $_GET["id"];
<a...
Is it possible to join 3 tables, two of which contain user names (different users) and then order the list output by alphabetical order?
// table 1
t1.id
t1.event
t1.t2_ID
Yep, that did it. Thanks for your help!!!
Hmm... Yes I'm getting an error every time I click on a radiobutton...
Wow! I never thought you could get input withing tag with ID.
Before I saw your post I found a script that I modified a bit. I get a count but do not know how to set max limit on selection:
...
I have a list of items with select checkboxes. I need to have a script that will count how many of them are selected and will disallow selection once certain limit is reached. I'd also like to put a...
I have a function that disables SUBMIT button after it is clicked once.
function submitonce(theform){
//if IE 4+ or NS 6+
if (document.all||document.getElementById){
//screen thru every...