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
Showing results 1 to 22 of 22
Search took
0.14
seconds.
Search:
Posts Made By:
amars1983
Forum:
MySQL
10-16-2009, 11:09 PM
Replies:
1
Validating foreign keys in MySQL
Views:
725
Posted By
amars1983
Validating foreign keys in MySQL
I'm a mysql noob, trying to port a script from oracle. I'm validating foreign keys like so in oracle:
SELECT m.member_id, c.member_id
FROM member m, contact c
WHERE m.member_id =...
Forum:
MySQL
09-27-2009, 12:07 AM
Replies:
0
MySQL equivalent to Oracle's "set echo on"
Views:
2,000
Posted By
amars1983
MySQL equivalent to Oracle's "set echo on"
Sorry for the noob question, but I've searched all over and can't find it. Is there an equivalent in MySQL to oracle's "set echo on" for viewing details when running a script?
Forum:
ASP
09-03-2009, 06:58 PM
Replies:
3
FSO and CopyFile - copied file not appearing on server
Views:
1,629
Posted By
amars1983
It did work, because when I go to that webpage,...
It did work, because when I go to that webpage, it appears as it should. It's just when I'm viewing my server through any ftp client or as networked drive that it doesn't show up.
Forum:
ASP
09-02-2009, 10:02 PM
Replies:
3
FSO and CopyFile - copied file not appearing on server
Views:
1,629
Posted By
amars1983
FSO and CopyFile - copied file not appearing on server
I'm creating a mechanism to backup my homepage and replace it with a new homepage and be able to restore it in the future. I've used the fso and CopyFile method. Here is the script for backup and...
Forum:
HTML & CSS
07-28-2009, 07:55 PM
Replies:
1
Yet another IE7 Layout problem
Views:
470
Posted By
amars1983
Yet another IE7 Layout problem
On the following page, I have a left div that contains a navbar and some other elements. In every browser except IE7, the spacing is the same between the elements in the left div. Any help would be...
Forum:
JavaScript frameworks
06-16-2009, 05:10 AM
Replies:
0
Question about tinybox
Views:
1,401
Posted By
amars1983
Question about tinybox
Hi, don't know if anyone here has experience with Michael Leigeber's TinyBox, but if so, I have a question. I've been able to implement it just fine with how it is normally set up. However, I'm...
Forum:
PHP
06-05-2009, 03:45 AM
Replies:
3
Using a form in a printf statement
Views:
656
Posted By
amars1983
Thank you so much for your help. I used the echo...
Thank you so much for your help. I used the echo instead of the printf. The links were really good to. Thanks.
Forum:
PHP
06-04-2009, 11:12 PM
Replies:
3
Using a form in a printf statement
Views:
656
Posted By
amars1983
Using a form in a printf statement
Hi, I'm fairly new at php and using a printf statement. Is it possible to use an html form within the statement. Here is a sample of my code. I keep getting an unexpected T_STRING error on line 3....
Forum:
MySQL
04-24-2009, 11:17 PM
Replies:
5
Selecting only one field at a time where multiple rows have the same value
Views:
896
Posted By
amars1983
Awesome. That works great. Thanks a ton.
Awesome. That works great. Thanks a ton.
Forum:
MySQL
04-24-2009, 10:38 PM
Replies:
5
Selecting only one field at a time where multiple rows have the same value
Views:
896
Posted By
amars1983
Thanks for the quick reply. I have that query,...
Thanks for the quick reply. I have that query, but what I'm saying is I have multiple fields with the same value and I only want to pull out one at a time.
Forum:
MySQL
04-24-2009, 10:03 PM
Replies:
5
Selecting only one field at a time where multiple rows have the same value
Views:
896
Posted By
amars1983
Selecting only one field at a time where multiple rows have the same value
Newbie here, so if this doesn't make sense I'm sorry. I'm creating a comments area on a page where users can comment on content. I would like to preview a comment before it is posted, so I've...
Forum:
HTML & CSS
04-15-2009, 09:16 PM
Replies:
7
IE7 & extra space in li with block display
Views:
2,792
Posted By
amars1983
Thank you so much. The 1% height worked...
Thank you so much. The 1% height worked perfectly. My negative margins were for positioning on the page the navigation menu is on. Thanks for you help.
Forum:
HTML & CSS
04-15-2009, 04:20 AM
Replies:
7
IE7 & extra space in li with block display
Views:
2,792
Posted By
amars1983
That still doesn't do it. Here is a link to the...
That still doesn't do it. Here is a link to the navigation menu:
http://www.marsdenfamily.us/test/sidebar.html
Thanks for your help.
Forum:
HTML & CSS
04-15-2009, 12:22 AM
Replies:
7
IE7 & extra space in li with block display
Views:
2,792
Posted By
amars1983
I've also added it to the non-hover #navbar li a...
I've also added it to the non-hover #navbar li a {, but it adds the extra space to all of the list items, not just the one being hovered over.
Forum:
HTML & CSS
04-14-2009, 10:40 PM
Replies:
7
IE7 & extra space in li with block display
Views:
2,792
Posted By
amars1983
IE7 & extra space in li with block display
I'm doing a navigation bar with css and for some reason on my bar when I add display block to the link in the list item when hovered over, in IE7 it adds extra spacing below the list item. I do the...
Forum:
HTML & CSS
03-21-2009, 07:54 AM
Replies:
0
Tinymce and word wrapping
Views:
1,743
Posted By
amars1983
Tinymce and word wrapping
I'm using tinymce to write a blogging tool and I was wondering if there is a way to force tinymce to wrap at the specified width of the text area. If not, is there a certain css sheet in the source...
Forum:
MySQL
03-19-2009, 05:42 PM
Replies:
7
Pulling html from mysql
Views:
1,947
Posted By
amars1983
What is a good tool that isn't web based. I've...
What is a good tool that isn't web based. I've been using phpMyAdmin. Here's my code for reading the records:
<?php
$con = mysql_connect("xxx","xxx","xxxxx");
if (!$con)
{
die('Could...
Forum:
MySQL
03-19-2009, 05:32 PM
Replies:
7
Pulling html from mysql
Views:
1,947
Posted By
amars1983
I was able to look in the database and the html...
I was able to look in the database and the html was there.
Forum:
MySQL
03-19-2009, 06:13 AM
Replies:
7
Pulling html from mysql
Views:
1,947
Posted By
amars1983
Pulling html from mysql
I'm using tinymce to build a blog for a personal site. I have everything working correctly as far as getting everything into the mysql db, but when pulling all the code from it, it seems to not see...
Forum:
JavaScript programming
03-12-2009, 04:05 PM
Replies:
3
Calling variables
Views:
1,600
Posted By
amars1983
You could place both functions into one external...
You could place both functions into one external file, link to it from both pages, and just make the variable in the first function that you want in the second global. Hope this helps.
Forum:
JavaScript programming
03-12-2009, 06:18 AM
Replies:
2
Passing array as argument to function
Views:
1,539
Posted By
amars1983
Thank you for the help.
Thank you for the help.
Forum:
JavaScript programming
03-12-2009, 04:58 AM
Replies:
2
Passing array as argument to function
Views:
1,539
Posted By
amars1983
Passing array as argument to function
Hi everybody. First post. I'm trying to pass an array as an argument for a function on load of an html page, but can't seem to get it to work. Here is my code. Any help would be greatly...
Showing results 1 to 22 of 22
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
07:51 AM
.
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.