Freelancers Network
 
skill list top cap
Homepage
Join the Freelancer's Network
Update your details
Find a freelancer
Post a project
Find a project
Projects Archive
Post a job
Find a job
Jobs Archive
See Dan's Pages
See Andy's Pages
Link to this site
Resources
Join/Leave Forum
Forum Messages
+Additions+ Adverts
Advertising
Contact Us
Subscribe to our newsletter - enter your email address and hit return
Freelancers.net is owned and operated by Andy Stowell and Dan Winchester
skill list end cap
guru web hostcom

Find me again on Freelancers.net

Freelancers Forum Messages on Sunday August 10th 2003

FN-FORUM: site check wanted please!! - www.evoke-media.com

date posted 10th August 2003 23:51

okay, i'm just about ready for one of them site check thingummies.... i've spent (many) painstaking hours this weekend converting my site to be entirely XHTML/CSS driven...... and in the process gi...

Re: FN-FORUM: email addy being used for spam

date posted 10th August 2003 22:45

David Eckersall wrote: > > has anyone else had their email addy used to send spam from? discovered > mines being used when i got 'mail delivery returned' messages :mad: > > anyone know a way to st...

Re: FN-FORUM: ASP problem

date posted 10th August 2003 21:03

Thanks guys problem solved now :) John David Eckersall wrote: > > use a for each..in loop > > John anslow wrote: > >> >> Hi guys, >> >> I'm having a mare with a form and could do with some help f...

Re: FN-FORUM: email addy being used for spam

date posted 10th August 2003 20:57

lol... On Sunday, August 10, 2003, at 09:22 PM, David Eckersall wrote: > yeah, i've used the made up email addresses in the past when bringing > down spammers mail servers. i just wondering there...

Re: FN-FORUM: OT: Sunday Funny

date posted 10th August 2003 20:55

haha that's proper funny...... On Sunday, August 10, 2003, at 02:24 AM, Stanislav Maksimov wrote: > Dutch Who Wants To Be Millionaire > > http://www.dynom.nl/stuff/though_question/ > > Just open al...

Re: FN-FORUM: email addy being used for spam

date posted 10th August 2003 20:54

yeah, i've used the made up email addresses in the past when bringing down spammers mail servers. i just wondering there wasnt something i'd not thought of. i'm sending them a nice warning and if...

Re: FN-FORUM: email addy being used for spam

date posted 10th August 2003 20:47

that sucks man... but to be truthful it is possible to 'anonymously' send email from any email address......... all you need to do is download an anonymous mailer program - and there are lots out...

FN-FORUM: email addy being used for spam

date posted 10th August 2003 20:39

has anyone else had their email addy used to send spam from? discovered mines being used when i got 'mail delivery returned' messages :mad: anyone know a way to stop it happening - probably no way i...

Re: FN-FORUM: ASP problem

date posted 10th August 2003 20:33

use a for each..in loop John anslow wrote: > > Hi guys, > > I'm having a mare with a form and could do with some help from the ASP > Guru's out there. > > Basically I have a form dynamically genera...

Re: FN-FORUM: ASP problem

date posted 10th August 2003 20:22

How about: For i=1 to request.form.count If len(request.form.item(i)) 0 then body = body & request.form.key(i) & ": " & request.form.item(i) End If Next Tam John anslow wrote: > > Hi...

RE: FN-FORUM: ASP problem

date posted 10th August 2003 20:22

John Try a standard diagnostic routine as a starting point for EACH formElement IN Request.Form Thisname = formElement response.write Thisname & " = " & request(Thisname) & "" NEXT hope this...

FN-FORUM: ASP problem

date posted 10th August 2003 19:58

Hi guys, I'm having a mare with a form and could do with some help from the ASP Guru's out there. Basically I have a form dynamically generated from a database each entry has an order box that the...

FN-FORUM: Dedicated Hosting

date posted 10th August 2003 18:40

Just a quick question. Do any of you actually provide your own hosting? I was thinking of getting a couple of RaQ's throgh rackshack, and wondered if it was worth the effort :p...

Re: FN-FORUM: ICS question

date posted 10th August 2003 18:39

Don't know if TCP/IP filtering works with ICS, as I've never bothered to try. See http://support.microsoft.com/default.aspx?scid=kb;en-us;Q309798&sd=tech ++++++++++++++++++++++++++++++++++++++++++++...

Re: FN-FORUM: sql question

date posted 10th August 2003 17:56

It is MySql and Project_Id is a tinyint. Shucks. How do I get the information from the first table where the Emploee_Id is not in the second one then? Thanks Pam ----- Original Message ----- From:...

Re: FN-FORUM: sql question

date posted 10th August 2003 17:54

select keycol from table_a where keycol not in (select keycol from table_b) can be rewritten for MySQL as: select a.keycol from table_a a left outer join table_b b on (a.keycol = b.keycol) where b.k...

Re: FN-FORUM: sql question

date posted 10th August 2003 17:48

Also if you are using MySQL you can't use nested queries (unless you're using the alpha version of 4.1.0 and the syntax is different anyway). And most other database do not perform automatic string to...

Re: FN-FORUM: sql question

date posted 10th August 2003 17:44

O Dear. it is still failing even when SELECT Employee_Id FROM greensplash_employees_per_project where Project_Id = 18 does find something. Any other ideas please. Thanks Pam ----- Original Message...

Re: FN-FORUM: ICS question

date posted 10th August 2003 17:39

erm, I'm thinking! Used to do this as a Job so I SHOULD know how :p I'm 99.9% sure you cant do it with ICS, best way is to invest in 2k server and use IIS - thats what I did when I was running SBS4.5...

RE: FN-FORUM: PHP/MySQL question

date posted 10th August 2003 17:31

> Nope. Still get the parsing error. > > (Curiously, the MySQL website doesn't indicate that *what* needs to be > mentioned.) has to be a legal select statement. It's a PHP parse error though? c...

Re: FN-FORUM: sql question

date posted 10th August 2003 17:28

OOPS - I have just realised that "SELECT Employee_Id FROM greensplash_employees_per_project where Project_Id = '18' " won't find anything. No wonder it is failing. Thanks Pam ----- Original Messag...

RE: FN-FORUM: sql question

date posted 10th August 2003 17:21

Pam Is project_id a numeric and your testing against a string '18' ? Alan S On 10 August 2003 17:42, PAMELA WHITTAKER [EMAIL REMOVED] wrote: > > I am getting the following error > You have an erro...

RE: FN-FORUM: PHP/MySQL question

date posted 10th August 2003 17:19

Non-standard mysql extension. :) create table Has a nasty habit of making column names such as 'count(name)'. But can be handy at times. Dave. On Sun, 2003-08-10 at 17:11, Alan Sheppard wrote: > D...

Re: FN-FORUM: PHP/MySQL question

date posted 10th August 2003 17:16

Adding the star should definitely work ... see example below: ---- e.g. ---- mysql> describe T_Members; +------------+--------------+------+-----+---------+-------+ | Field | Type | Null...

FN-FORUM: sql question

date posted 10th August 2003 17:13

Hi, I am getting the following error You have an error in your SQL syntax near 'SELECT Employee_Id FROM greensplash_employees_per_project where Project_Id = '18' at line 1. I have set the sql string...

RE: FN-FORUM: PHP/MySQL question

date posted 10th August 2003 16:44

Doesn't create table expect a data structure list of parameters not a data cursor ? Alan S On 10 August 2003 15:38, John Anderson [EMAIL REMOVED] wrote: > > I'm trying to use the CREATE [TEMPORARY...

Re: FN-FORUM: ICS question

date posted 10th August 2003 16:37

Yup.. want to block yahoo messenger.. but it uses all these different ports.. so the only thing I could think of was to block the c-class networks that yahoo tries.. one of the ports is 80.. and I...

Re: FN-FORUM: ICS question

date posted 10th August 2003 16:07

Not on it's own. All it does is play with the routing table things like that. I assume you are wanting to block access that sort of thing? ----- Original Message ----- From: "Craig Tinson" [EMAIL RE...

Re: FN-FORUM: PHP/MySQL question

date posted 10th August 2003 16:07

Nope. Still get the parsing error. (Curiously, the MySQL website doesn't indicate that *what* needs to be mentioned.) Thanks though, John ----- Original Message ----- From: "Tony Crockford" [EMA...

FN-FORUM: Re: printer cartridges

date posted 10th August 2003 16:02

hi all,=0D =0D Any one recommend a web site that offers cheap inkjet cartridges, need a = new black one !=0D =0D cheers=0D =0D Terry O'Leary =0D =0D Graduate and Freelance Web Designer=0D Website (b...

Re: FN-FORUM: PHP/MySQL question

date posted 10th August 2003 15:58

Hi John, You haven't specified which columns to copy from the T_Members table, so I've got a feeling that's where your syntax error is coming from. Try this instead... CREATE TEMPORARY TABLE T_Temp...

RE: FN-FORUM: PHP/MySQL question

date posted 10th August 2003 15:55

> >CREATE TABLE T_Temp SELECT FROM T_Members; > > T_Members exists in the database, and I'm pretty certain of > the syntax. Select *what* from T_Members? I'd say that's the problem. try CREA...

Re: FN-FORUM: PHP/MySQL question

date posted 10th August 2003 15:52

Ah, except the [LIKE] option is only valid for MySQL 4.1 and above. Not available in 4.0.1. And the message simply indicates a parsing error. Thanks, though. John ----- Original Message ----- Fro...

Re: FN-FORUM: PHP/MySQL question

date posted 10th August 2003 15:17

John wrote: >I'm trying to use the CREATE [TEMPORARY] TABLE command in MySQL in a PHP >file, but I keep getting a parsing error. > > >CREATE TABLE T_Temp SELECT FROM T_Members; I've not used tempora...

FN-FORUM: PHP/MySQL question

date posted 10th August 2003 15:09

And how is everyone on this hot and sunny Sunday afternoon. I can hear the lager call my name, but like a good boy, I have to earn it first. (And if anyone can help, I'll have one for you, too!) An...

FN-FORUM: ICS question

date posted 10th August 2003 14:46

Afternoon all :) does anyone know if Internet Connection sharing in windows 2000 can restrict access to certain ip's/hosts? cheers Craig...

Re: FN-FORUM: Drinks!

date posted 10th August 2003 12:40

Darren yup.. born in leeds and dragged up in headingley :) Cheers Craig P.S. sorry about the slow response.. went out friday evening anyway and wasn't online saturday.. decided to have a day out...

FN-FORUM: Re: woohoo!

date posted 10th August 2003 11:23

woohoo!!!!!!!!!!!!!!!!!!!!!!!!! ----- Original Message ----- From: "Richard Parratt" [EMAIL REMOVED] To: [EMAIL REMOVED] Sent: Sunday, August 10, 2003 2:56 AM Subject: RE: FN-FORUM: Unsual idea......

FN-FORUM: [OT] Barbie

date posted 10th August 2003 09:40

I think that I actually have a hangover! It was a good day though...

RE: FN-FORUM: What a shame !

date posted 10th August 2003 09:16

rofl... not that kind of 'Hot, sticky and not sleeping' !! Mike > -----Original Message----- > From: [EMAIL REMOVED] [EMAIL REMOVED] Behalf Of David > Eckersall > Sent: 09 August 2003 23:02 > To:...

RE: FN-FORUM: Unsual idea...

date posted 10th August 2003 02:28

> ======================== > Friday 8th August 2003 11:43:09 > RE: FN-FORUM: Unsual idea... - Craig Tinson [EMAIL REMOVED] > > > Actually... I'm not converting the waveform so I can compress > it...

Re: FN-FORUM: OT: Sunday Funny

date posted 10th August 2003 02:18

ROFL, some people crack me up. How much was that actually for - I normally watch RTL seeing as it is one of the few channels I can still pick up on UK Astra, oh and I think its German, ot Dutch - not...

FN-FORUM: OT: Sunday Funny

date posted 10th August 2003 01:56

Dutch Who Wants To Be Millionaire http://www.dynom.nl/stuff/though_question/ Just open all three images in their order. Stas...

Re: FN-FORUM: And we were worried about India...

date posted 10th August 2003 01:18

ROFL, that certainly brightened up my early morning lull! ----- Original Message ----- From: "Lists" [EMAIL REMOVED] To: [EMAIL REMOVED] Sent: Sunday, August 10, 2003 12:14 AM Subject: FN-FORUM: And w...



Messages by Day
August 31st 2003
August 30th 2003
August 29th 2003
August 28th 2003
August 27th 2003
August 26th 2003
August 25th 2003
August 24th 2003
August 23rd 2003
August 22nd 2003
August 21st 2003
August 20th 2003
August 19th 2003
August 18th 2003
August 17th 2003
August 16th 2003
August 15th 2003
August 14th 2003
August 13th 2003
August 12th 2003
August 11th 2003
August 10th 2003
August 9th 2003
August 8th 2003
August 7th 2003
August 6th 2003
August 5th 2003
August 4th 2003
August 3rd 2003
August 2nd 2003
August 1st 2003


Messages by Month
December 2003
November 2003
October 2003
September 2003
August 2003
July 2003
June 2003
May 2003
April 2003
March 2003
February 2003
January 2003


Messages by Year
2008
2007
2006
2005
2004
2003
2002
2001
2000