Freelancers Forum Messages on Thursday August 3rd 2006
Re: FN-FORUM: Managed Dedicated Server
date posted 3rd August 2006 21:13
Hi Andrew,
I use John's servers and cannot recommend him highly enough. Uptime
is great and on the odd occasion when there has been an issue it has
been sorted out quickly. I have even been kno...
Re: FN-FORUM: Managed Dedicated Server
date posted 3rd August 2006 20:55
Hi Andrew,
We can provide either a fully managed server(s) or enterprise hosting
that are both extremely reliable.
We don't cut corners - anywhere.
Using multiple providers,multiple routers,mult...
RE: FN-FORUM: PHP Class for Forms - Display & Validation
date posted 3rd August 2006 19:25
> On Wed, Aug 02, 2006 at 02:54:59PM -0000, Darren Beale wrote:
> >
> > > Can anyone recommend a good PHP class for the production and
> > > validation of HTML forms?
> >
> > HTML_QuickForm?
> >
>...
RE: FN-FORUM: Charging for google analytics
date posted 3rd August 2006 18:03
I tell my clients about it. If they feel can take it on, then fine. If
not, then I charge T & M for the service. There are no free lunches, lol
Craig
-----Original Message-----
Evening all,...
FN-FORUM: Charging for google analytics
date posted 3rd August 2006 17:49
Evening all,
Right, hope I am not going to get my ehad blown off for asking this,
but who offers their clients a google analytics based report, and if
so do you charge?
Analytics is great I think, a...
RE: FN-FORUM: thinking out loud (about DNS)
date posted 3rd August 2006 16:31
First thing I would do is transfer the DNS out of the hands of the third
party holding things up. (www.mydomain.com offer a good free DNS service and
allow you to easily manage your own DNS)
First se...
FN-FORUM: Managed Dedicated Server
date posted 3rd August 2006 16:02
I am looking for a dedicated server, maybe semi dedicated, it needs to be
managed (very reliably so) Recommendations and ones to avoid.
Ukdedicated have been mentioend but their support is very uncl...
Re: FN-FORUM: thinking out loud (about DNS)
date posted 3rd August 2006 16:01
Yep assumptions where made sorry!!
Getting carried away.
Andrew
http://andrewdyson.freelancers.net
----- Original Message -----
From: "Rich" [EMAIL REMOVED]
To: [EMAIL REMOVED]
Sent: Thursday, Aug...
Re: FN-FORUM: thinking out loud (about DNS)
date posted 3rd August 2006 15:44
Oh,
That's also assuming it's Linux and not Windows too ;)
On 8/3/06, Rich [EMAIL REMOVED] wrote:
> Andrew,
>
> That's assuming that his new hosts allows homedir aliasing on the IP
> address as per...
Re: FN-FORUM: thinking out loud (about DNS)
date posted 3rd August 2006 15:43
Andrew,
That's assuming that his new hosts allows homedir aliasing on the IP
address as per your example. If they only allow VirtualHost's then he
needs to point DNS anyway.
Nice idea, though.
Rich...
Re: FN-FORUM: thinking out loud (about DNS)
date posted 3rd August 2006 15:39
Just open the new hosting account with the existing domain name then when
you ftp the site to the new server, place a redirect to the new IP address
When you are ready, simply repoint the DNS
Place...
Re: FN-FORUM: thinking out loud (about DNS)
date posted 3rd August 2006 15:28
Hi Derek,
Firstly, as already informed, nameservers do not handle specific domains.
Nameservers hold ALL records for a particular domain name, and tend to
work in order of allocation. is ns1, ns2, n...
Re: FN-FORUM: thinking out loud (about DNS)
date posted 3rd August 2006 15:17
[EMAIL REMOVED] wrote:
> Can some one (preferably who knows about these things) take a look at
> my ramblings below and point out any obvious flaws.
>
> The situation:
> I've taken on a client, wh...
RE: FN-FORUM: thinking out loud (about DNS)
date posted 3rd August 2006 14:59
Hi Derek,
Sub domains don't operate from the nameservers, you need to add a record to
the DNS for the domain on the existing server to point the sub domain to
another server.
Any questions give me a...
FN-FORUM: thinking out loud (about DNS)
date posted 3rd August 2006 14:54
Can some one (preferably who knows about these things) take a look at my
ramblings below and point out any obvious flaws.
The situation:
I've taken on a client, who wants to move from one host to...
Re: FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 13:50
> Firstly, you only need $key=3D>$value if you have an associative array=
FWIW, which probably isn't much, all arrays in PHP are associative. Just=
=
they have auto-assigned numerical keys if you...
Re: FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 13:47
> "If they are always the same size you could just loop them in parallel=
:
>
> $myArray1=3Darray(1, 2);
> $myArray2=3Darray('hello', 'goodbye');
>
> for ($counter=3D0;$counter {
> mysql_query("INS...
Re: FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 13:28
On Thursday 03 Aug 2006 1:06 pm, Ben Moxon wrote:
> Otherwise you could have an array of arrays:
>
> $smallArray1=3Darray( 1, "hello")
> $smallArray2=3Darray( 2, "goodbye")
>
> $bigArray=3Darray( sma...
Re: FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 13:15
Hi Richard,
Thanks for the response. I tried to use array_combine but it seems to
be PHP 5+ and this server is using 4.2.2, bloody typical.
Array_merge merged them nicely, but the format is all mes...
Re: FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 13:13
Ben,
"If they are always the same size you could just loop them in parallel:
$myArray1=array(1, 2);
$myArray2=array('hello', 'goodbye');
for ($counter=0;$counter...
Re: FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 12:59
Rich wrote:
>
> Hi guys,
>
>
> $array = array('1', '2', '3', '4', '5');
> $array2 = array('a', 'b', 'c', 'd', 'e', 'f');
> foreach ($array as $key => $value, $array2 as $key2 => $value2) {
> // MySQ...
Re: FN-FORUM: PHP String to Constant
date posted 3rd August 2006 12:57
On Thursday 03 Aug 2006 12:08 pm, Rob Allen wrote:
> Can't you do:
>
> $numberofresults =3D function_to_hit_page_and_calculate();
> $count =3D (int)($numberofresults / 250) + 1;
>
> ?
Breaks on mult...
Re: FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 12:50
Graeme,
Yep, sorry, got carried away in the example. Both of them are the
same length but the first value in both arrays is nonsense.
Basically both arrays contain 251 values, but I only want to us...
Re: FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 12:49
On Thursday 03 August 2006 12:46, Rich wrote:
> Hi guys,
>
> It's PHP "noob" day, sorry ;)
>
> OK, if I have 2 arrays and want to use 1 'foreach' loop to run through
> the values, for example, somethi...
Re: FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 12:43
On Thu, 3 Aug 2006, Rich wrote:
> Any ideas? Please, no complex code, I understand there are easier and
Are the arrays the same length? Your example has them different lengths.
--
Graeme -
Top po...
FN-FORUM: Multiple Array Looping
date posted 3rd August 2006 12:39
Hi guys,
It's PHP "noob" day, sorry ;)
OK, if I have 2 arrays and want to use 1 'foreach' loop to run through
the values, for example, something like;
$array = array('1', '2', '3', '4', '5');
$arra...
Re: FN-FORUM: PHP String to Constant
date posted 3rd August 2006 12:00
Rich wrote:
>
> As it stands I have;
>
> $numberofresults = function_to_hit_page_and_calculate();
> $numberofpages = $numberofresults / 250;
> $count = 0;
> Then I have
>
> while ($numberofpages >...
Re: FN-FORUM: PHP String to Constant
date posted 3rd August 2006 11:47
Thanks for your responses.
Essentially what I was trying to achieve (and did in the end, thanks) was:
I hit a page using cURL which tells me the number of search results,
say 487. I can hit a page...
Re: FN-FORUM: PHP String to Constant
date posted 3rd August 2006 11:25
On Thu, Aug 03, 2006 at 10:23:14AM -0000, Richard Lewis wrote:
>
> On Thursday 03 August 2006 10:52, Rich wrote:
> >
> > Is there an easy way to convert it or it's contents into a constant
> > that I...
Re: FN-FORUM: PHP String to Constant
date posted 3rd August 2006 11:15
On Thursday 03 August 2006 10:52, Rich wrote:
>
> Is there an easy way to convert it or it's contents into a constant
> that I can use for float comparison? Had a google around and couldn't
> find mu...
FN-FORUM: PHP String to Constant
date posted 3rd August 2006 10:45
Hi guys,
I have a PHP variable ($var) that contains a float, but it thinks it's
a string. Because of this, if I compare $var to a number, it never
evaulates properly.
Is there an easy way to conver...