Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 50
Search took 0.13 seconds.
Search: Posts Made By: sunnynosid
Forum: PHP 02-29-2012, 02:30 AM
Replies: 3
Views: 629
Posted By sunnynosid
I used mysql_result() to retrieve a specific row...

I used mysql_result() to retrieve a specific row but then the following error came:

Warning: mysql_result() [function.mysql-result]: Unable to jump to row 1 on MySQL result index 3 in...
Forum: PHP 02-28-2012, 05:28 PM
Replies: 3
Views: 629
Posted By sunnynosid
Question how to echo multiple rows

I want to retrieve multiple rows(containing same username) from table mysql. But i don't want to use loop. I want to know if mysql_result() or mysql_data_seek() can retrieve multiple rows or not?
Forum: MySQL 02-28-2012, 04:56 AM
Replies: 7
Views: 1,257
Posted By sunnynosid
Is mysql_data_seek() or mysql_result() useful to...

Is mysql_data_seek() or mysql_result() useful to retrieve all rows?
Forum: PHP 02-26-2012, 05:36 AM
Replies: 2
Views: 526
Posted By sunnynosid
Question header location problem

This is my code to redirect to a different page when a row is deleted:

<?
session_start();...
Forum: MySQL 02-25-2012, 01:51 PM
Replies: 7
Views: 1,257
Posted By sunnynosid
I dont want to use loop because i think that...

I dont want to use loop because i think that there should be an inbuilt function in mysql to do this. I think that mysql_fetch_array() can retrieve all rows, but when i use this function, only the...
Forum: MySQL 02-24-2012, 12:56 PM
Replies: 7
Views: 1,257
Posted By sunnynosid
This is my code to retrieve all rows which are...

This is my code to retrieve all rows which are having quantity=8

$sql="SELECT items FROM datatable WHERE quantity='8'";
$query=mysql_query($sql);
$row=mysql_fetch_row($query);
echo"$row[0]";
...
Forum: MySQL 02-24-2012, 07:17 AM
Replies: 7
Views: 1,257
Posted By sunnynosid
Question want to echo multiple rows

I am using while loop to echo all rows from a table, e.g.,
while($row=mysql_fetch_row($result)) {echo"....";} and it is working fine but i want another way to echo all rows without using loop so...
Forum: JavaScript programming 02-22-2012, 05:07 PM
Replies: 1
Views: 293
Posted By sunnynosid
javascript regexp problem

I am trying to get an alert when user type a digit in my textbox and i made this code:

<script type=text/javascript>
<!--
function allowed(){
var str=document.getElementById('firstname').value;...
Forum: PHP 02-14-2012, 06:16 PM
Replies: 8
Views: 981
Posted By sunnynosid
Thumbs up Thanks both of you. My problem is solved. I gave...

Thanks both of you. My problem is solved. I gave full path to my link i.e.
<a href='http://www.nimrans.com/file.php'>Link</a>. And now its working correctly. But as much as i can remember, i did it...
Forum: PHP 02-14-2012, 09:35 AM
Replies: 8
Views: 981
Posted By sunnynosid
If file.php is in my subdomain and there is a...

If file.php is in my subdomain and there is a link in file.php. Now i want to connect this link to a file index.php that is in my public_html.

I tried the following:
<a...
Forum: PHP 02-13-2012, 03:23 PM
Replies: 8
Views: 981
Posted By sunnynosid
No, the Login link has this code <a...

No, the Login link has this code
<a href=/home/nimransc/public_html/index.php>Login</a>

Yes i have a page where login exists.
Forum: PHP 02-13-2012, 03:10 PM
Replies: 8
Views: 981
Posted By sunnynosid
Question File path problem

Check my website jobs.nimrans.com
On the index.php of this domain you will find Login link on the top of the page on a black strip.
I have linked this Login link to index.php of my website...
Forum: PHP 02-13-2012, 02:46 PM
Replies: 6
Views: 548
Posted By sunnynosid
You are using the variable $query two times. This...

You are using the variable $query two times. This is your mistake.

The following is your code.

$query=mysql_query($query); This is wrong, change the variable $query to other variable like...
Forum: JavaScript programming 01-03-2012, 07:40 AM
Replies: 6
Views: 1,549
Posted By sunnynosid
Question I think this would make clear to you. This is...

I think this would make clear to you.
This is my script:

<html>
<head>
<script type=text/javascript>
value=1
value=<?php $num?>;
</script>
<?php echo"$num";?>
Forum: JavaScript programming 01-03-2012, 07:09 AM
Replies: 6
Views: 1,549
Posted By sunnynosid
Question javascript var value outside javascript

This is my javascript:

<script type=text/javascript>
function alert(){var value=1; alert("value");}
</script>

<?php
Some Code....
?>
Forum: PHP 10-31-2011, 04:36 AM
Replies: 4
Views: 556
Posted By sunnynosid
But i have waited for a much longer period but my...

But i have waited for a much longer period but my webpage www.marquee.nimrans.com is still not appearing in google results even when i type "marquee.nimrans.com" in search box and search. I have...
Forum: PHP 10-25-2011, 01:09 PM
Replies: 4
Views: 556
Posted By sunnynosid
thanks a lot for this advice.

thanks a lot for this advice.
Forum: PHP 10-25-2011, 07:18 AM
Replies: 4
Views: 556
Posted By sunnynosid
meta tags problem

Hi i have made a webpage www.marquee.nimrans.com and for this webpage to be seen on google i have added the meta tags to it. But my webpage doesn't appear in google search results. What's the...
Forum: General web building 10-24-2011, 09:10 AM
Replies: 2
Views: 902
Posted By sunnynosid
meta tags problem

Hi i have made a webpage www.marquee.nimrans.com and for this webpage to be seen on google i have added the meta tags to it. But my webpage doesn't appear in google search results. What's the...
Forum: General web building 10-18-2011, 05:15 PM
Replies: 3
Views: 711
Posted By sunnynosid
No, anyone didn't tell me but i read it somewhere...

No, anyone didn't tell me but i read it somewhere on the internet that some languages requires a license to use them, so i thought its better to ask anyone if javascript requires license. Anyway...
Forum: General web building 10-18-2011, 04:31 PM
Replies: 3
Views: 711
Posted By sunnynosid
Language License

I don't have license to use javascript. Can i use javascript without license. And also tell me which languages require license for using them and which not.
Forum: General web building 10-02-2011, 04:40 AM
Replies: 5
Views: 757
Posted By sunnynosid
Thanks for helping me.

Thanks for helping me.
Forum: General web building 10-01-2011, 11:28 AM
Replies: 5
Views: 757
Posted By sunnynosid
www.nimrans.com Check pls. This is my link. You...

www.nimrans.com
Check pls. This is my link. You will notice an extra space in the right side in the laptop if u have a wide screen laptop, but in desktop, you will not see that space.
Forum: General web building 10-01-2011, 09:01 AM
Replies: 5
Views: 757
Posted By sunnynosid
doctype error

My website is appearing differently in laptop. On desktop monitor(square screen), my website is appearing correctly, but on laptop(rectangular screen), there is added a blank space too, though my...
Forum: General web building 09-29-2011, 02:49 PM
Replies: 8
Views: 2,995
Posted By sunnynosid
One more thing i wanna ask is "Which web lanuages...

One more thing i wanna ask is "Which web lanuages are free to use and which are not? And why they are not free? And if i use non-free language in my website then what will happen? "
Showing results 1 to 25 of 50

 
Forum Jump

All times are GMT +1. The time now is 11:04 AM.