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 5
1
2
3
>
Last
»
Showing results 1 to 25 of 123
Search took
0.33
seconds.
Search:
Posts Made By:
rpjd
Forum:
JavaScript programming
03-19-2012, 11:50 AM
Replies:
4
Javascript document.getElementById() with array of id's
Views:
22,792
Posted By
rpjd
Thanks Kor. Sorry, abduraooft, I forgot to...
Thanks Kor. Sorry, abduraooft, I forgot to choose a Category for this post. It wasn't intentional, apologies to all concerned.
Forum:
Ajax and Design
05-26-2011, 01:31 PM
Replies:
0
accessing a php value
Views:
525
Posted By
rpjd
accessing a php value
On the webpage (php) that I am working on I have a counter displayed beside a button. If the counter is 0, 0 is displayed. When the button is clicked, a php script increases the counter and then...
Forum:
JavaScript programming
05-25-2011, 01:43 AM
Replies:
2
wrapping a link around a php value
Views:
485
Posted By
rpjd
wrapping a link around a php value
I have the following table row printing on a webpage
echo "<tr><td id='counter1'>{$row['counter1']}</td><td><input type='button' name='counter1' onclick='submit();'</td></tr>";
While counter1 is 0,...
Forum:
MySQL
05-24-2011, 10:36 PM
Replies:
5
Count users by gender
Views:
834
Posted By
rpjd
Cheers guys, its working now. Well if you've...
Cheers guys, its working now. Well if you've never heard of files have numbers as names, you have now!
Forum:
MySQL
05-24-2011, 09:34 PM
Replies:
5
Count users by gender
Views:
834
Posted By
rpjd
Your suggested solution gives a syntax error at...
Your suggested solution gives a syntax error at 'As Male'
Forum:
MySQL
05-24-2011, 07:04 PM
Replies:
5
Count users by gender
Views:
834
Posted By
rpjd
Count users by gender
I have two tables Users and Changes
Users
Username, Address, County, MemberType, Gender
Changes
Filename, Username
the query is to count the number of male and female users in various...
Forum:
PHP
05-23-2011, 07:40 PM
Replies:
2
Increasing counters
Views:
265
Posted By
rpjd
When one of the buttons is clicked I can get the...
When one of the buttons is clicked I can get the user type using the session username. I then check the the appropriate button with
if(isset($_POST['ButtonName']))
I can then get the LineNo (first...
Forum:
PHP
05-16-2011, 03:19 PM
Replies:
2
Increasing counters
Views:
265
Posted By
rpjd
Increasing counters
I have the following ouput as part of a POST submit form. There are 3 types of users with own counters and submit button. I use the Username(session) and Line No to increase counter. How do I...
Forum:
JavaScript programming
05-11-2011, 11:33 AM
Replies:
4
table/div display
Views:
723
Posted By
rpjd
can someone advise on this? if(condition...
can someone advise on this?
if(condition true)
{
echo "<script type='text/javascript'>display('divID1');</script>";
echo "<div id='divID1'>div contents</div>";
}
else
{
echo "<script...
Forum:
JavaScript programming
05-10-2011, 12:53 PM
Replies:
4
table/div display
Views:
723
Posted By
rpjd
I forgot the quotes. Correction: (if...
I forgot the quotes. Correction:
(if condition true)
echo "<script type='text/javascript'>display('divID1');</script>";
echo "<div id='divID1'>";
(if condition true)
echo "<script...
Forum:
JavaScript programming
05-10-2011, 11:22 AM
Replies:
4
table/div display
Views:
723
Posted By
rpjd
table/div display
I'm using php to write nested div's to a page. The div's display depending on a condition
(if condition true)
echo "<script type='text/javascript'>display(divID1);</script>";
echo "<div...
Forum:
DOM and JSON scripting
04-26-2011, 01:08 AM
Replies:
2
finding document id using $_POST values
Views:
502
Posted By
rpjd
finding document id using $_POST values
I'm want to find any id's on a page that are the same as values submitted to the $_POST['Ref'] array.
$source = file_get_contents( 'E:/wamp/www/Project/File.php' );
$document = new DOMDocument;...
Forum:
Graphics and Multimedia discussions
04-24-2011, 01:41 AM
Replies:
0
Turning a map into a form
Views:
637
Posted By
rpjd
Turning a map into a form
I have a map (jpeg image) of a country with various regions outlined on the map, how can I turn the map into an interactive form, whereby clicking on any name/region on the map produces statistic for...
Forum:
PHP
04-22-2011, 03:53 PM
Replies:
1
finding html table id using session data
Views:
482
Posted By
rpjd
finding html table id using session data
Is this the correct way to find a html table that is the same as a session variable?
$Ref = $_SESSION['Ref'];
for($i=0; $i<count($Ref); $i++)
{
$source = file_get_contents( 'CurrentPage.php' );...
Forum:
MySQL
04-22-2011, 09:46 AM
Replies:
10
numeric table names
Views:
1,726
Posted By
rpjd
Got it working. $sql = "create table `$var`...
Got it working.
$sql = "create table `$var` (colum names(types))";
Forum:
MySQL
04-21-2011, 11:54 PM
Replies:
10
numeric table names
Views:
1,726
Posted By
rpjd
If it works in the mysql console, I can't see why...
If it works in the mysql console, I can't see why it would work with php, possibly, probably different syntax. At least I hope!
Forum:
MySQL
04-21-2011, 10:11 PM
Replies:
10
numeric table names
Views:
1,726
Posted By
rpjd
I tried your solution Old Pendant but it did't...
I tried your solution Old Pendant but it did't work got this errror
Incorrect Table name.
Forum:
MySQL
04-21-2011, 08:18 PM
Replies:
10
numeric table names
Views:
1,726
Posted By
rpjd
I created a table called '2' in mysql console...
I created a table called '2' in mysql console using:
create table `2` (column1, column2,.....);
How can I do this using php if the table name is $var?
Forum:
MySQL
04-21-2011, 07:50 PM
Replies:
10
numeric table names
Views:
1,726
Posted By
rpjd
numeric table names
I want to create a table with numeric and partly numeric names such as '1' and '1-2'. Reading the mysql docs, tables can have numeric names as long as they are string literals. The table names are...
Forum:
PHP
04-20-2011, 04:49 PM
Replies:
4
session not recognised
Views:
551
Posted By
rpjd
The login password was the same as the password...
The login password was the same as the password on file but nothing was happening. The problem seemingly was the Password field in my passwords table. The max length of password at registration is...
Forum:
PHP
04-20-2011, 02:51 PM
Replies:
4
session not recognised
Views:
551
Posted By
rpjd
session not recognised
In my login script I have assigned
session_start();
$_SESSION['Username'] = $Username;
On my webpage I have
$session_start();
echo $_SESSION['Username'];
However, I am getting undefined...
Forum:
MySQL
04-18-2011, 09:39 PM
Replies:
6
3 queries in 1
Views:
703
Posted By
rpjd
I tried your solution Wojjie as is in mysql...
I tried your solution Wojjie as is in mysql console and it gave me unknown column Male. I tried it again with the Male and Female comparisons in single quotes, i.e Gender='Male' and Gender='Female'...
Forum:
MySQL
04-18-2011, 08:52 PM
Replies:
6
3 queries in 1
Views:
703
Posted By
rpjd
Using latest Wamp server, MyIsam engine. I was...
Using latest Wamp server, MyIsam engine. I was thinking of doing a main select on the party, then seperate select queries for each count or is there a more efficient approach?
Basically the...
Forum:
MySQL
04-18-2011, 08:08 PM
Replies:
6
3 queries in 1
Views:
703
Posted By
rpjd
3 queries in 1
I want to run the following query:
select the number of men and women who voted for each party in each US state. Can this be done in a single query? If so, whats the best way to approach it? ...
Forum:
Graphics and Multimedia discussions
04-18-2011, 04:01 PM
Replies:
6
clickable map
Views:
3,190
Posted By
rpjd
Something along that line yes, where each state...
Something along that line yes, where each state would be clickable as a link, though not necessarily as a seperate image.
Showing results 1 to 25 of 123
Page 1 of 5
1
2
3
>
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
05:37 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.