Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 500
Search took 6.35 seconds.
Search: Posts Made By: abduraooft
Forum: HTML & CSS 05-22-2013, 09:27 AM
Replies: 5
Views: 124
Posted By abduraooft
When using an external CSS file, there shouldn't...

When using an external CSS file, there shouldn't be the html <style> </style> tags inside it.
Forum: HTML & CSS 05-22-2013, 09:23 AM
Replies: 2
Views: 84
Posted By abduraooft
When I add border-top-right-radius: 20px; ...

When I add border-top-right-radius: 20px;
border-bottom-right-radius: 20px; to a.trigger, I get it rounded in FF(20)
Forum: HTML & CSS 05-07-2013, 11:32 AM
Replies: 2
Views: 115
Posted By abduraooft
Parent_Folder |__ CSS ...

Parent_Folder
|__ CSS
| |__ style.css
|__Genral_Use
|__ subFolder1
|__ webpage.html
It...
Forum: HTML & CSS 04-30-2013, 02:45 PM
Replies: 4
Views: 162
Posted By abduraooft
YOu need to set margin:0 auto; for your #banner,...

YOu need to set margin:0 auto; for your #banner, #menubar & #site_content
Forum: Geek News and Humour 04-30-2013, 12:10 PM
Replies: 4
Views: 214
Posted By abduraooft
Read their specification first,...

Read their specification first, http://thomaspark.me/2013/04/crapcha-completely-ridiculous-and-phony-captcha-that-hassles-for-amusement/
:)
Forum: Geek News and Humour 04-30-2013, 09:23 AM
Replies: 4
Views: 214
Posted By abduraooft
Crapcha!

Completely Ridiculous And Phony Captcha that Hassles for Amusement
http://crapcha.com/ :eek:
Forum: PHP 04-26-2013, 02:36 PM
Replies: 1
Views: 132
Posted By abduraooft
DESC is a mysql keyword...

DESC is a mysql keyword (http://dev.mysql.com/doc/refman/5.0/en/reserved-words.html). In your first query you have put back-ticks around it but there's no back-ticks in your second query.

PS:...
Forum: HTML & CSS 04-26-2013, 12:51 PM
Replies: 2
Views: 100
Posted By abduraooft
I observe two set of same elements for the markup...

I observe two set of same elements for the markup in your navigation. Is that for some purpose?

When I removed all the properties in red (below) using firebug, I got a navigation just how you...
Forum: MySQL 04-20-2013, 12:43 PM
Replies: 1
Views: 321
Posted By abduraooft
What happens when you execute just the query,...

What happens when you execute just the query, after removing all other lines?

CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20)...
Forum: HTML & CSS 04-19-2013, 01:14 PM
Replies: 1
Views: 65
Posted By abduraooft
There's no information on the positioning in that...

There's no information on the positioning in that given code. Can we have a link to your page?
Forum: HTML & CSS 04-19-2013, 12:44 PM
Replies: 5
Views: 181
Posted By abduraooft
You need to clear the floats to get that. See...

You need to clear the floats to get that. See http://www.quirksmode.org/css/clearing.html

Just set overflow:auto; to #page
Forum: HTML & CSS 04-18-2013, 11:19 AM
Replies: 3
Views: 158
Posted By abduraooft
Try removing that float from #access

Try removing that float from #access
Forum: HTML & CSS 04-18-2013, 11:00 AM
Replies: 1
Views: 106
Posted By abduraooft
There isn't any single '/' in that given line of...

There isn't any single '/' in that given line of code!

btw. this is not an HTML related issue.
Forum: HTML & CSS 04-15-2013, 06:58 AM
Replies: 3
Views: 150
Posted By abduraooft
It'd be good, if you could post a link to your...

It'd be good, if you could post a link to your page here and explain the issues.
Forum: PHP 04-15-2013, 06:57 AM
Replies: 5
Views: 255
Posted By abduraooft
Where's your code to update the table?

Where's your code to update the table?
Forum: JavaScript programming 04-13-2013, 08:14 AM
Replies: 4
Views: 194
Posted By abduraooft
If you could depend on javascript, then you may...

If you could depend on javascript, then you may write it like
<form id="input" action="html_form_action.asp" method="get">
<a href="#" onclick="document.forms['input'].submit();">SAVE</a>

Why...
Forum: Computer Programming 04-13-2013, 08:08 AM
Replies: 2
Views: 344
Posted By abduraooft
May be, but we all have to follow this forum...

May be, but we all have to follow this forum rules (http://www.codingforums.com/rules.htm).
Forum: Computer Programming 04-03-2013, 09:55 AM
Replies: 5
Views: 441
Posted By abduraooft
Try...

Try http://www.yash.info/indianLanguageConverter/malayalam.html
Forum: Computer Programming 04-03-2013, 08:19 AM
Replies: 5
Views: 441
Posted By abduraooft
transliterate != translate

transliterate != translate
Forum: PHP 04-03-2013, 06:57 AM
Replies: 2
Views: 138
Posted By abduraooft
If(!isset($_GET['abc']) || empty($_GET['abc'])) ...

If(!isset($_GET['abc']) || empty($_GET['abc']))
echo "please put valid value for abc";
Forum: PHP 04-03-2013, 06:53 AM
Replies: 1
Views: 138
Posted By abduraooft
Please follow...

Please follow http://www.codingforums.com/rules.htm
Forum: PHP 03-27-2013, 06:05 AM
Replies: 35
Views: 690
Posted By abduraooft
You need to add proper debugging steps in between...

You need to add proper debugging steps in between the lines of your code.
Add some echos in each of your conditional blocks and also to the the variables like $row['profile'] to make sure that the...
Forum: PHP 03-26-2013, 04:10 PM
Replies: 35
Views: 690
Posted By abduraooft
The above code has to be like if...

The above code has to be like
if (mysql_num_rows($result)!=0)
{
$row=mysql_fetch_assoc($result);
$_SESSION['myusername']=$myusername;
$_SESSION['profile']=$row['profile'];
Forum: PHP 03-26-2013, 11:59 AM
Replies: 35
Views: 690
Posted By abduraooft
Add echo "num rows : ".mysql_num_rows($result); ...

Add echo "num rows : ".mysql_num_rows($result);
after $result=mysql_query($sql); and see if it displays anything.
Forum: PHP 03-26-2013, 11:07 AM
Replies: 35
Views: 690
Posted By abduraooft
This is not the way to code. You may change...

This is not the way to code.

You may change it like
$sql="SELECT * from user where username='$myusername' and password='$mypassword'"; // real_escape_string need to applied before this line ...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +1. The time now is 03:27 AM.