Search:
Type: Posts; User: adamou
Search :
Search took 0.01 seconds.
Hey there, having a very frustrating problem.
Here is my sheetCell class.
sheetCell = function(options) {
for(var x in options) this[x] = options[x];
if(this.headerNum...
ah yeah sorry I ment for developers :) Thank you phpDocumentor looks good, I will give it a try and see what happens
Hey all, wasn't certain which section I could post this.
Anyhow, after a year and a half of the project, its finally time to start rebuilding it (and doing it the right way :P) - and of course...
Hey there thanks for the reponse, we went ahead with the Linux host and its been fantastic so far - using WHM/Cpanel so I get almost complete root access but in an easy to use interface, and yeah the...
in the example you've provided you've used 2 instances of echo.
while ($row = mysqli_fetch_array($result))
{
echo $persons[] = $row['FirstName'] . " " . $row['LastName'] . " is " ....
mysqli is the prefered choice of course :)
while ($row = mysqli_fetch_array($result))
{
echo $persons[] = $row['FirstName'] . " " . $row['LastName'] . " is " . $row['Age'] . " years old!...
ack I'm silly, hadn't realised that paypal offers their own shopping cart which I had to submit to.
while($row = mysql_fetch_array($result))
{
echo $row['FirstName'] . " " . $row['LastName'] . " is " . $row['Age'] . " years old! <br>";
}
should work fine if its displaying...
its usually those smaller things that keep you up at night :p
Hey all, I am submiting to PayPal as a cart for individual items but on PayPal side its giving me a 'Your cart is empty' error.
Any ideas?
Here is the form I am submitting
<form...
thank you for that :) CentOS seems to be a good choice by the looks of it
Hey all! Well my project is fast picking up, so we need to move onto a dedicated machine. But the problem is - I don't even know where to begin!
So we are going with a Linux fully managed server,...
hey there I need some help, the same issue is back again (IE8 specific) - the content is displayed on FireFox/Chrome/other browsers/IE6/IE7(not IE8 in compability mode) but when it comes to IE8 it...
Hey there, having a very strange nightmare bug.
I am using $("#id").load() to load content into a DIV, for some reason in IE8 the content won't display on the DIV unless I have some typing BEFORE...
Ah! Flowplayer.
Thank you very much :)
Completely forgot about it. My google skills failed :(
Hey there, I am after a free-lightweight flash player, to play .swf / mp4. Pretty much just something with a play/pause/stop button and a navigation scroller for web-browser.
Any recommendations...
Hey there, what I want to do is convert the following into $_GET[]
eg
mywebsite.com.au/search/selection-make/selection-model/?price1=1&price2=2
and if I do a print_r($_GET) it will have
...
Hey there, I am having a strange issue; before we migrated to the current server (CentOS 5.5 dedicated) a particular page would load at a very fast speed, with around 0.1 php script execution,...
Hey there, I am having a bit of a problem;
So far I am having images resized based on ratio or stretch format, but I want to provide a crop option;
the ratio logic works something like this;
...
thanks for that Tirna, I'll give this code a try when I get back home :)
ok I solved it
<?php
$amount = 20;
$total = 700;
$page = 0;
$count = 0;
for($i = 1; $i <= 3; $i++ ) {
if($_GET['page'] > $i) {
echo $i,' ';
} else break;
}
$min = 2;
if($i > 1) { echo ' ... '; $min = $i - 1;}
if(($_GET['page'] - 2) < 1) $min = 0;
Hey all, I need help writing up a clean method of determining pages
here is what I have so far.
<?php
//we have a total of 700
//we only display 20 results per page.
Not sure how it works in IE now, but setAttribute works funny when applying events like
div.setAttribute("onClick", function () { alert('test'); } ); ~ atleast in my experience
But in the end I...
you may want to avoid using setAttribute for common properties such as method, action (With forms), value, name and etc
any code to display?