-
Posts
5,717 -
Joined
-
Last visited
-
Days Won
6
Everything posted by Adam
-
Try just printing out the value for each on your script, to check if it's a problem with the form or your PHP.. like (can't see form method): print $_GET['User'] . ' / ' . $_GET['Supplier'] . ' / ' . $_GET['Organizer'] . ' / ' . $_GET['Attractions'] . '<br /><br />'; Try just putting that at the top of your script and see what comes out. Also just a quick tip you don't use checked="checked" it's just checked, like: <input type="checkbox" name=".." value=".." checked /> Adam
-
Have you tried googling it? 235,000 results ... http://www.google.co.uk/search?q=safari+javascript+debugger
-
PHP is parsed before the server loads.. So calling functions on events like that is impossible without using JavaScript and AJAX to create a 'http request'. Google ajax for more info! Adam
-
maxudaskin: while($row = mysql_fetch_array($query)) { // Do whatever } I'm trying to create a db handler class, using the standard functions would kind of defeat the point.. corbin: Ahh I wasn't aware the mysql_fetch_row function would return the next row every time it's called.. Cheers!
-
Hah I've come to realise that mysql_result only returns one field from the row. But looking and I can't find another function that returns a whole row at a given row number? Like say: mysql_fetch_assoc($query, $rowNum); anybody know of one?? Cheers. Adam!
-
I'm trying to setup my own db class, but have a problem with the "fetchRow" function. The query is being executed fine and this method does return part of the result but only the first field :S Been looking at this for a while and can't work it out... public function fetchRow() { if ($this->rowCount() == 0) return false; if (@$this->result = mysql_result($this->query, $this->row_id)) { $this->row_id++; return $this->result; } else { $this->row_id = 0; return false; } return true; } It's called in this way: while ($row = $db->fetchRow()) { print_r($row); } Can anybody spot the problem :S Cheers for any help! Adam[/code]
-
I'd probably suggest using SMARTY, can integrate translation much easier using their template engine..
-
May be wrong I'm certainly no expert with objects, but how can you put an object within another object?
-
Warning: Cannot modify header information - headers already sent by
Adam replied to zuko's topic in PHP Coding Help
setCookie must be sent with the header, ie. before any HTML .. -
cheers guys. Got it sorted in end using array_multisort !
-
cheers for the reply. Which of our ways is the quickest and/or best?
-
found a soloution.. function sortBreadcrumbs($a, $b) { if ($a['title_order'] == $b['title_order']) { return 0; } elseif ($a['title_order'] < $b['title_order']) { return -1; } else { return 1; } } usort($breadcrumbs, "sortBreadcrumbs"); cheers anyway!
-
Hi i've come across a problem in a PHP app I'm writing. I have a multidimensional array which looks like: $breadcrumbs[] = array( 'name' => 'Computers', 'title_order' => 3, ); There's about 6 or 7 $breadcrumbs similar to that. Basically I need to reorder breadcrumbs by 'title_order'. does anybody know how I could do that? Say something like: sort($breadcrumbs['title_order']); Anybody have any ideas? Cheers! Adam
-
I think this is what you're looking for to select all the checkboxes(?): http://www.shiningstar.net/articles/articles/javascript/checkboxes.asp And to handle the data PHP side: http://www.w3schools.com/php/php_forms.asp .. is a good start. Adam
-
[SOLVED] Calling a function based on a var from within a class method?
Adam replied to Adam's topic in PHP Coding Help
sorted it boys! if (is_callable($this->$func())) { call_user_func($this->$func()); } else { die('Unable to call function: ' .$func); } -
Confsuing stuff! Basically say a function name is passed within the URL, for example: "demoFunction" .. this is then collected from within the class construct method and used to try and call a function, using the php functions "is_callable" and "call_user_func" .. however as it points to another method within a class, how would I go about doing that? I've tried the following: if (is_callable($func)) { call_user_func($func); } else { die('Unable to call function: ' .$func); } if (is_callable($this->$func)) { call_user_func($this->$func); } else { die('Unable to call function: ' .$func); } if (is_callable($this->func)) { call_user_func($this->func); } else { die('Unable to call function: ' .$func); } if (is_callable('$this->'.$func)) { call_user_func('$this->'.$func); } else { die('Unable to call function: ' .$func); } Didn't expect much from the last one! .. The $func var is set within the __construct method so there's no need to have $this->func to call the value of $func .. Hopefully that makes sense, and someone knows the soloution?? Cheers for any help! Adam
-
As Andy said I wouldn't rely on it for security... But a quick search on google found: http://www.google.co.uk/search?q=javascript+strip+html+tags Adam
-
Hah sorry. Guess it weren't the clearest description err.. I think I've found a way to sort it out now so don't worry.. Cheers anyway though pal!
-
Ah no it's not the actual centering that's the problem. The way it's done uses a body background image to create the sadow effects on the side. The reason I can't simply set it as the background for the container div is because of the strip spanning all the way across which makes the containing div the entire width of the page. I'm trying to find a way of doing it without having to have it specific to any left margin... but every way I think of doing it there's something that just doesn't work well. Anybody encountered this before??
-
A'haa .. after a nights sleep it came to me.. function loadImage(imgsrc) { if (document.images) { preloadImg = new Image; preloadImg.src = imgsrc; } ti = setInterval("doSomething();", 1000); } function doSomething() { if (preloadImg.complete == 0) { return false; } alert('Image has been loaded!'); clearInterval(ti); } ... incase anyone struggles with the same problem. Adam
-
Well to be honest.. After some thinking I'm not going to be altering the width all that much. I reckon an 800px ish wide design would be simply too much space. I think the way it is now fills it nicely and gives it a bit of a unique look. My main aim at the moment is to make it dead centre. When doing the CSS I made it at a set width from the left, which isn't all that good.. Thanks for the replies though guys, I appreciate the feedback... - oh and cheers for the spelling mistake. I've corrected it now and all the 'interest' words have been changed. The text isn't the final draft yet, mainly needed something to fill it up. Adam
-
Hi all. I'm in the process of setting up a script somewhat like a gallery.. Basically I'd like to click a thumbnail, then load another, larger image. I've set up a neat looking "loading" sign to say it's now loading the image into cache.. but what I would like to know is how I could 'loop until image loaded' .. sort of speak.. so load the images in real-time.. then move on with the script.. I've done a lot of googling but now found much thats any good... Bin trying for a while so might just be too tired to think straight. silly thing is i've done it before just can't remember how :S Could anybody help me out? Cheers! Adam
-
Cheers for all the replys. Taken into account what you've all said.. And no the links don't quite work yet. I'm setting up an impressive piece of javascript to handle that.. but for those without js, the alternative will be running soon - which i'm going to use as the norm' for now.. Shall reply with an updated site soon... by the way the contact page is now done with some solid validating and security. Cheers again! Adam
-
Right okay, cheers guys! I'll get to work on making it thicker. The idea came from several sites I've seen where they've used a thin design, and i liked 'em! But if the general opinion of people is "too thin" I guess that's what potential employers would think too... Yeah cheers for heads up. Non-JS users will be something I take into consideration once I move onto the JS side of things. Oh and cheers for grammer mistakes CroNiX! After re-reading it this morning what you said about 'interest' stood out a mile... Shall show you an updated site soon! Thanks again! Adam
-
Just finished designing my online portfolio... I've not moved on to the JS or PHP yet but before I continue would just like a bit of feedback on the design side.. http://www.adamswork.net/ I've gone for a sort of simplistic, sylish look :S I'm terrible at design so want to feel comfortable with it before I continue... I've made the code as SEO friendly and accessible as I could... Also on the index.php page, there's some HTML in the source that isn't displayed onscreen yet because it's a theme feature I'm planning to implement once I move on to the JS + PHP... I would appreciate any and all feedback.... Cheers! Adam!