Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 102
Search took 0.42 seconds.
Search: Posts Made By: cyrus709
Forum: Large Projects (new web application, complex features etc) 06-06-2011, 03:47 PM
Replies: 2
Views: 1,478
Posted By cyrus709
Im sure that the games are not web based nor...

Im sure that the games are not web based nor offer an API for this sort of thing. Aside from that the SDK's do not fit into your budget. This eliminates all possibilities for what you are asking.
...
Forum: HTML & CSS 03-31-2011, 12:51 PM
Replies: 3
Views: 930
Posted By cyrus709
There are a couple options, If you want to set...

There are a couple options, If you want to set the background image of the table you can use:
table{ background-image: url(''); background-repeat: no-repeat;
an alternative to this, if you do not...
Forum: JavaScript programming 03-30-2011, 07:17 PM
Replies: 1
Views: 1,147
Posted By cyrus709
The browser must have third part cookies enabled....

The browser must have third part cookies enabled. As for changing the header in your PHP, the site has to have P3P Implemented in order for you to know how to change your php.
Forum: PHP 03-30-2011, 04:33 PM
Replies: 11
Views: 2,794
Posted By cyrus709
LMAO! well then my signature needs to say that i...

LMAO! well then my signature needs to say that i founded Google, and created the light bulb.
Forum: PHP 03-27-2011, 07:14 PM
Replies: 13
Views: 930
Posted By cyrus709
if they are in the same directory use this: ...

if they are in the same directory use this:
<?php include('index.php'); // this will include index.php ?>
Forum: PHP 03-27-2011, 07:02 PM
Replies: 2
Views: 288
Posted By cyrus709
Id advise against short tags, Try warping with...

Id advise against short tags,
Try warping with your php with the traditional instead <?php ?>

Next I will need more code to work with, preferably the function your calling
Forum: PHP 03-27-2011, 06:44 PM
Replies: 3
Views: 828
Posted By cyrus709
Here is a tutorial for php...

Here is a tutorial for php http://www.w3schools.com/php/

Well what you will need is to look at http://www.w3schools.com/.
Essentially what you will need to do is create a database....
Forum: PHP 03-27-2011, 06:37 PM
Replies: 2
Views: 353
Posted By cyrus709
You already created this thread once, and someone...

You already created this thread once, and someone already replied that we have no idea what a browse box is.
http://www.codingforums.com/showthread.php?t=222446

and as sunfighter has said code...
Forum: HTML & CSS 03-26-2011, 10:25 AM
Replies: 7
Views: 1,456
Posted By cyrus709
source code is on the website which he gave ...

source code is on the website which he gave earlier, however what im more interested to know is: how you can say that you can solve it easily without having seen the source code?
Forum: HTML & CSS 03-26-2011, 01:48 AM
Replies: 7
Views: 1,456
Posted By cyrus709
though this is not constructive I just wanted to...

though this is not constructive I just wanted to say that it looks awsome
Forum: PHP 03-26-2011, 12:50 AM
Replies: 4
Views: 775
Posted By cyrus709
did you really need three separate posts?

did you really need three separate posts?
Forum: PHP 03-25-2011, 07:07 PM
Replies: 7
Views: 497
Posted By cyrus709
http://www.php.net/manual/en/function.isset.php ...

http://www.php.net/manual/en/function.isset.php

this function will help you get where you need to be ;)
Forum: PHP 03-25-2011, 06:00 PM
Replies: 7
Views: 1,327
Posted By cyrus709
Does each row that you are retrieving contain...

Does each row that you are retrieving contain more then one detail? or are there multiple rows each one retrieving a different detail? ex a row for price another row for photo
If it is the latter do...
Forum: PHP 03-25-2011, 09:26 AM
Replies: 7
Views: 1,327
Posted By cyrus709
echo "<table border=\"0\">"; //...some code ...

echo "<table border=\"0\">";
//...some code
$query = mysql_query($sql);
while ($row = mysql_fetch_array($query) {
//loop table rows and columns here
echo "<tr><td>" ....
Forum: PHP 03-25-2011, 09:17 AM
Replies: 3
Views: 368
Posted By cyrus709
the colon before the variable allows me to later...

the colon before the variable allows me to later go back and explode it because it is a list of names.

It does not give me an error, it does insert the information into the database, but instead...
Forum: PHP 03-25-2011, 01:46 AM
Replies: 3
Views: 368
Posted By cyrus709
mysql update additionaly

What Im looking to do is to update a table row in addition to what is already in the table. I believe that I have come across it at some point but I cant seem to find it now.


I know this is not...
Forum: JavaScript programming 03-20-2011, 04:30 PM
Replies: 2
Views: 498
Posted By cyrus709
dynamically call external script?

What im trying to do is to dynamically call an external javascript file. The script once called will provide variables for another function. I have tried using this function
function...
Forum: JavaScript programming 03-17-2011, 09:41 PM
Replies: 2
Views: 2,481
Posted By cyrus709
iframe refresh from parent window

Alright I have an Iframe, and at the end of that Iframe I have set a variable with JS to be equal to TRUE, indicating that the page has run through the script.
I then check that the iframe from the...
Forum: Unknown sized projects (request quote) 02-16-2011, 02:50 PM
Replies: 6
Views: 2,066
Posted By cyrus709
timeline? Budget? who are your users? etc.?

timeline?
Budget?
who are your users?
etc.?
Forum: PHP 02-14-2011, 07:25 PM
Replies: 5
Views: 741
Posted By cyrus709
Im sorry for the misunderstanding. URL encode the...

Im sorry for the misunderstanding. URL encode the values before submission or on submit(this way whitespace is counted also) then retrieve like you would the rest of the form elements. You may need...
Forum: PHP 02-14-2011, 06:51 PM
Replies: 5
Views: 741
Posted By cyrus709
Im sorry that im still misunderstanding. PHP does...

Im sorry that im still misunderstanding. PHP does not have a code for a textarea, thats an HTML element.

Are you saying that you want the form to be displayed in a php document? or are you asking...
Forum: HTML & CSS 02-14-2011, 06:32 PM
Replies: 4
Views: 379
Posted By cyrus709
Does each row have its own individual ID? that...

Does each row have its own individual ID? that would be a simple fix. I take it your working with a table? a possible alternative would be to change the tables id attributes or something to that...
Forum: PHP 02-14-2011, 06:26 PM
Replies: 5
Views: 741
Posted By cyrus709
you can either submit the form and have the...

you can either submit the form and have the information retrieved from the URL through $_GET or $_POST, Or you can submit into some sort of database or file (or even a cookie) and retrieve.

Really...
Forum: HTML & CSS 02-14-2011, 06:18 PM
Replies: 8
Views: 2,139
Posted By cyrus709
Works in Chrome, FF, IE, and my version of opera...

Works in Chrome, FF, IE, and my version of opera (9). You can use http://browsershots.org/ or a similar site to test compatibility.
Forum: HTML & CSS 02-14-2011, 05:51 PM
Replies: 7
Views: 604
Posted By cyrus709
One way to handle this is to make the position...

One way to handle this is to make the position absolute for your menu and place it X from the top. Works for me.

.nav{
width:200px;
margin-left:600px;
top:10px;
position:absolute;
}
Showing results 1 to 25 of 102

 
Forum Jump

All times are GMT +1. The time now is 01:02 AM.