Search found 12 matches

by ageorghiou
Mon Sep 11, 2006 7:20 am
Forum: Graphics
Topic: Large dynamic text file in flash
Replies: 1
Views: 5637

Large dynamic text file in flash

I've got a flash text box that loads a txt file to get it's content. The txt file is ~400kb and so it is taking a long time to load and in the meantime just displays the empty text box and an empty scroll bar (flash 8 scrollbar component). Is there a way to have it display the text as it's loading s...
by ageorghiou
Thu Apr 27, 2006 3:37 am
Forum: Javascript
Topic: news ticker in Internet Explorer for mac
Replies: 2
Views: 1255

Pickle, that's the answer I was really looking for. My friend just wrote to me midday yesterday and I was busy with a few other things so I didn't really want to think about it. I had a sense that the ie5(mac) share of the browser market was quite low - on any of the sites I've hosted I've only seen...
by ageorghiou
Wed Apr 26, 2006 11:04 am
Forum: Javascript
Topic: news ticker in Internet Explorer for mac
Replies: 2
Views: 1255

news ticker in Internet Explorer for mac

I recently added a news ticker to a site and it all works well except for in internet explorer for mac. I know that IE for mac is discontinued now but my friend that I did it for wants it to work in that as well. I had actually made some php code to generate the text that the news ticker was going t...
by ageorghiou
Thu Mar 30, 2006 6:24 am
Forum: PHP - Code
Topic: check if two dates are a week apart
Replies: 4
Views: 1068

Thanks, that's good to know. I'll think about tweaking it. I don't think it's vital for this script. If you get 8 days worth of news during that week it may not really be too big a deal. I'll check the mktime() though for that.

Thanks
by ageorghiou
Thu Mar 30, 2006 4:01 am
Forum: PHP - Code
Topic: check if two dates are a week apart
Replies: 4
Views: 1068

Thanks Pimptastic, you're a star. I'll actually make it something like: list($day, $mon, $year) = split('[\/]', $date); $itemDate = mktime(0,0,0,$mon,$day,$year); $nextWeek = time() + 604800; // 604800 = number of second in a week if($itemDate < $nextWeek) { // item is within the current week } keep...
by ageorghiou
Thu Mar 30, 2006 3:41 am
Forum: PHP - Code
Topic: check if two dates are a week apart
Replies: 4
Views: 1068

check if two dates are a week apart

I'm trying to setup a simple text database with each item on a new line with the date at the start of the line. Basically when you go to the page it will find the current date and only output the items which are within one week of today. I'll have a big file with all of the items but the first time ...
by ageorghiou
Sun Mar 26, 2006 9:37 am
Forum: Regex
Topic: Parsing data from external websites
Replies: 3
Views: 3225

The friend that I'm doing this code for had previously linked to ukho tides information but (i assume) the html format or something else changed on their site at some point so his site hasn't updated this information for a while. I assumed that the company he's working for had previously obtained pe...
by ageorghiou
Sun Mar 26, 2006 6:37 am
Forum: Regex
Topic: Parsing data from external websites
Replies: 3
Views: 3225

Parsing data from external websites

Hi, I'm trying to set up a page that shows the 5 day tide forecast and I can't find any XML feeds anywhere so I've got to figure out how to grab the information I want from an HTML site. One site I found with the data I want is: http://easytide.ukho.gov.uk/easytide/EasyTide/ShowPrediction.aspx?PortI...
by ageorghiou
Fri Oct 28, 2005 7:36 am
Forum: PHP - Code
Topic: Form data not POSTing when submitted through Firefox
Replies: 8
Views: 1152

onSubmit. i like it. Thanks for that.

No errors on my javascript console.
by ageorghiou
Fri Oct 28, 2005 7:28 am
Forum: PHP - Code
Topic: Form data not POSTing when submitted through Firefox
Replies: 8
Views: 1152

It's not up at the moment so no link to it. I can't imagine why it shouldn't work in Firefox either because I though php was server side so shouldn't really concern itself with the browser. I was clicking on submit rather than pushing enter... I should probably do something about my onClick if the e...
by ageorghiou
Fri Oct 28, 2005 6:52 am
Forum: PHP - Code
Topic: Form data not POSTing when submitted through Firefox
Replies: 8
Views: 1152

feyd | Please use and tags where appropriate when posting code. Read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url][/color] Form HTML document: <HTML> <HEAD> <TITLE></TITLE> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-885...
by ageorghiou
Fri Oct 28, 2005 6:35 am
Forum: PHP - Code
Topic: Form data not POSTing when submitted through Firefox
Replies: 8
Views: 1152

Form data not POSTing when submitted through Firefox

I've just written a small php page that receives post data from a form and should save all of the forms to a comma delimited text file. When I test it through Internet Explorer and Safari, the data comes through fine but when using Firefox all I get is commas. Has anyone else had any problem like th...