Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 19
1
2
3
11
>
Last
»
Showing results 1 to 25 of 459
Search took
0.61
seconds.
Search:
Posts Made By:
dswimboy
Forum:
PHP
07-12-2006, 07:07 AM
Replies:
5
Why doesn't my PHP function work like it should?
Views:
873
Posted By
dswimboy
both of your scripts appear to be broken right...
both of your scripts appear to be broken right now. (at 1:48am Eastern)
problems occur between November and March which means Daylight Savings time messes you up.
when you calculate next...
Forum:
PHP
07-12-2006, 06:18 AM
Replies:
8
substr with array
Views:
807
Posted By
dswimboy
this works fine for me: $foo[0] = "hello"; ...
this works fine for me:
$foo[0] = "hello";
$foo[1] = "i wont talk to you";
$foo[2] = "fine be that way";
$foo[3] = "well youre in a bad mood";
for($i=0; $i<4; $i++) {
print(substr($foo[$i],...
Forum:
PHP
07-12-2006, 06:11 AM
Replies:
1
Replace Between Delimiters
Views:
677
Posted By
dswimboy
if you would like me to explain each parts of the...
if you would like me to explain each parts of the Regular Expressions, please ask.
my whole script looks like this:
$css_file_contents = '/* CSS Document */
body
{ background-color:...
Forum:
General web building
07-12-2006, 05:41 AM
Replies:
4
spam false positives
Views:
629
Posted By
dswimboy
spam false positives
i just bought myself a new domain name for my business. when i send email from the mail server, it get's flagged as spam in most of my client's email accounts. i'm in the same boat spammers are: what...
Forum:
MySQL
07-12-2006, 03:09 AM
Replies:
5
User System VarChar
Views:
1,182
Posted By
dswimboy
well, text fields do have a limit, i think it...
well, text fields do have a limit, i think it might be 65,000 some characters though. i have no idea why it's limited. i mean limiting the userID, password, id, msn, and aim make some sense, cuz you...
Forum:
MySQL
07-11-2006, 04:44 PM
Replies:
5
User System VarChar
Views:
1,182
Posted By
dswimboy
well, for adding your columns for a website...
well, for adding your columns for a website address, i change your table creation code to the following.
the number in parenthesis after varchar is the max length of the field. MySQL will...
Forum:
MySQL
07-11-2006, 06:46 AM
Replies:
5
User System VarChar
Views:
1,182
Posted By
dswimboy
here is some help about VARCHAR...
here is some help about VARCHAR http://dev.mysql.com/doc/refman/5.0/en/char.html
if you want a longer text field, look at the TEXT data type http://dev.mysql.com/doc/refman/5.0/en/blob.html
Forum:
PHP
07-11-2006, 06:34 AM
Replies:
1
Create Friends Script
Views:
615
Posted By
dswimboy
haven't seen it, but i'd talk about writing one...
haven't seen it, but i'd talk about writing one for you. email me at dswimboy at yahoo dot com if you're still interested. probably post here too, just in case you get spam filtered out.
Forum:
HTML & CSS
07-11-2006, 06:30 AM
Replies:
1
Newbie needs help wih Css Frames Faked and Fireworks HTML
Views:
749
Posted By
dswimboy
from within firworks, i would save your navbar...
from within firworks, i would save your navbar HTML to a new page, like temporary.html. in your new template from WordPress, put all your navbar HTML from temporary.html into the <div...
Forum:
HTML & CSS
07-11-2006, 06:21 AM
Replies:
1
Code for online stats
Views:
653
Posted By
dswimboy
you need something server side to do this, like...
you need something server side to do this, like PHP or Perl, amoung others.
Forum:
PHP
07-11-2006, 06:20 AM
Replies:
1
When Users Upload *.txt file, i will get Total Points ,Points Per Game ,etc...
Views:
654
Posted By
dswimboy
are you familiar with php at all? are you using a...
are you familiar with php at all? are you using a database like mySQL?
the php manual will be a big help http://us3.php.net/manual/en/index.php
specifically i'd look at the preg_split()...
Forum:
PHP
07-11-2006, 06:15 AM
Replies:
1
Random Image
Views:
658
Posted By
dswimboy
well i can't assist you in finding a script, but...
well i can't assist you in finding a script, but i have an idea for going about it. you could tell your server to parse *.png files as PHP files in one directory. then you could write/find a script...
Forum:
PHP
07-11-2006, 05:48 AM
Replies:
2
Call to underfined function that is there
Views:
588
Posted By
dswimboy
what happens when you change the name of the...
what happens when you change the name of the function in both places to something like site_foo()?
what happens if you comment out all the code that site_referer() has, and just return true;?
...
Forum:
PHP
07-11-2006, 05:42 AM
Replies:
2
Trying to Determine Source of a 'Title' Tag
Views:
556
Posted By
dswimboy
while it may not be the solution you wanted, what...
while it may not be the solution you wanted, what happens if you add another <title> tag in your code? does it "overwrite" the one that's there now?
i'm stabbing in the dark here, but this could...
Forum:
PHP
07-11-2006, 05:38 AM
Replies:
1
Template Issue??
Views:
647
Posted By
dswimboy
i don't see any php in your posting. please ask a...
i don't see any php in your posting. please ask a question about php in this forum. if you want javascript help go to the JavaScript Programming section.
ask about your alignment problem in the...
Forum:
Perl/ CGI
07-11-2006, 05:33 AM
Replies:
12
changing from flat files to MySQL. Perl or PHP?
Views:
1,200
Posted By
dswimboy
bazz was using a flat file for all his stuff. now...
bazz was using a flat file for all his stuff. now he's getting ready to start using a database.
deloch is right though, perl is amazing at text processing. php can do it, just takes a little more...
Forum:
JavaScript programming
07-10-2006, 05:08 PM
Replies:
3
Converting VBScript to Javascript
Views:
6,516
Posted By
dswimboy
try this document.onclick = function() { ...
try this
document.onclick = function() {
switch(window.event.srcElement.id) {
case "terms":
if (FrontPage_Form2.terms.value == "OFF") {
FrontPage_Form2.terms.value = "ON";...
Forum:
PHP
07-10-2006, 04:57 PM
Replies:
1
Can I trust php Date() function?
Views:
681
Posted By
dswimboy
if you're calling the date() function server...
if you're calling the date() function server side, without any user input as an argument, the user would have to fake something like server credentials. as far as i know.
Forum:
Perl/ CGI
07-10-2006, 06:31 AM
Replies:
4
Transfer O'Reilly Perl script to a webpage....
Views:
841
Posted By
dswimboy
i discovered that XML::RSS:SimpleGen should be...
i discovered that XML::RSS:SimpleGen should be available for ActivePerl version 6xx and above. what version fo you have? it should say in the start menu...something like "ActiveState ActivePerl 5.6"...
Forum:
Perl/ CGI
07-10-2006, 06:30 AM
Replies:
4
Transfer O'Reilly Perl script to a webpage....
Views:
841
Posted By
dswimboy
usually when a package isn't available on my...
usually when a package isn't available on my windows machine, i give up. i've been looking online for good repositories to add, but haven't found a solution for you.
you could post a new topic on...
Forum:
PHP
07-08-2006, 07:23 PM
Replies:
9
Timer for redirect.
Views:
844
Posted By
dswimboy
so then what about this in the HEAD ...
so then what about this in the HEAD
if($user_filled_out_form_properly) {
printf('<meta http-equiv="refresh" content="10;url=photographs.php?id=%s">', $pictureID);
}
Forum:
PHP
07-08-2006, 07:15 PM
Replies:
1
connection error (mysqli)
Views:
847
Posted By
dswimboy
mysqli appears to require MySQL v4.1 or above....
mysqli appears to require MySQL v4.1 or above. does your new machine have that?
Forum:
PHP
07-08-2006, 07:11 PM
Replies:
1
Seperating News Posts (Help Needed)
Views:
513
Posted By
dswimboy
what is a "it's own content box"? where is the...
what is a "it's own content box"? where is the link to your site? where are the links to "most sites" that you want yours to look like?
Forum:
PHP
07-08-2006, 07:09 PM
Replies:
1
thumbshots
Views:
686
Posted By
dswimboy
i'm sure there is a way, but i'm also sure it...
i'm sure there is a way, but i'm also sure it would involve some heavy coding. doing so is beyond my abilities anyway.
i come across a site a while ago that would take a screenshot of whatever...
Forum:
PHP
07-08-2006, 07:05 PM
Replies:
4
php switcher + flash + IE = broken?
Views:
775
Posted By
dswimboy
i agree with chirs right now. what happens...
i agree with chirs right now.
what happens when you click on the star shape, get taken to index.php, then press REFRESH?
do you get the new stylesheet?
Showing results 1 to 25 of 459
Page 1 of 19
1
2
3
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
03:06 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.