csshacker 0 Newbie Poster

How can i get Traffic for my new website techroadies.com

i think this is not looking KOOL. Suggest me

.

naybody help me

csshacker 0 Newbie Poster

How can i get Traffic for my new website <snipped url>

i think this is not looking KOOL. Suggest me

csshacker 0 Newbie Poster

Not bad, but try out my code

csshacker 0 Newbie Poster
<?php
header("Content-type: application/x-msdownload");
header("Content-Disposition: attachment; filename=extraction.csv");
header("Pragma: no-cache");
header("Expires: 0");

require_once( "db.php" );
 $query = "SELECT * FROM name ORDER BY last";
 $result = mysql_query($query) or die(mysql_error());
 echo "ID,First,Middle,Last,Email\r\n"; //header
while($row = mysql_fetch_array($result)){
echo "\"$row[id]\",\"$row[first]\",\"$row[middle]\",\"$row[last]\",\"$row[email]\"\r\n"; //data  
} 
?>
csshacker 0 Newbie Poster

How to php export to excel

csshacker 0 Newbie Poster
Hello daniweb Friends, i found my question's answer "How to Make a Hindi WebSite in PHP".
	You Can use Wordpress to make a Hindi website After instllation of Wordpress CMS Download a Wordpress Plugin name "HindiWriter1.1.zip". and put this in "plugins" Folder of your installed Wordpress CMS. Now login to admin area of CMS, and activate this plugin from plugin tab in "Admin Area".  After Activate this you can see a radio button on page "Write" There are two radio button hindi and English also a hindi radio button on main site with comment Form. Now select you language and post Your data, For Post a large article You Can use google Tarnslation Service.
csshacker 0 Newbie Poster

Hello DANIWEB Friends,
Anybody help me for making a website in HINDI (PHP).. my plan is i give a simple link or tab to change website languge Hindi to English OR English to Hindi.

please help me

csshacker 0 Newbie Poster
csshacker 0 Newbie Poster

Thanks Jkristos,

but you can suggest me --- i want all the URL Like

http://www.myhealthidea.com/category/subcategory

------ /category/subcategory -----

please suggest me for " .htaccess "


Help Me

csshacker 0 Newbie Poster

If U Have (Joomla Version 1.5.0) please Folow These Points :-

1. First of all Download a Extension Zip Folder from "http://extensions.joomla.org/"
if ext. Name like "com_mtree-159.zip" = "com" means Components,
if ext. Name like "mod_ghop_categories.zip" = "mod" means Modules

2. login to http://localhost/joomla/administrator/ OR http://127.0.0.1/joomla/administrator/
(joomla is your main directory)

3. Enter Your UserName and Password

4. After login You click on top horizontal navigation Name "Extensions"

5. Now you can see here is a file uploder

6. now Browse your zip Folder from click on Browse button from where u store this after download

7. if u find click on "Upload file & install".

8. No Worry Joomla about zip folder. zip folder auto installed in its related directory like Components, Modules, Templates etc.

9. if installtion is ok you can see it in the
* Components
* Modules
* Plugins
* Languages
* Templates

10. mostly ext. show a documentaion and configuration after its istallation.

csshacker 0 Newbie Poster

Thanks Jkristos,
but you can suggest me --- i want all the URL Like
http://www.myhealthidea.com/category/subcategory
------ /category/subcategory -----
please suggest me for " .htaccess "

csshacker 0 Newbie Poster
csshacker 0 Newbie Poster

Hello, Here is a simple table less form

<form action="http://www.mywebsite.com" method="post">
	<div style="width: 35%;">
		<br />
		<span style="width: 20%;">User Id : </span>
		<span><input type="text" type="user_id"></span>
		
		<br />
		<span style="width: 20%;">Password : </span>
		<span><input type="password" name="user_id"></span>
		
		<br />
		<span style="width: 20%;"> &nbsp; </span>
		<span><input type="submit" name="submit" value=" Login "></span>
	</div>
</form>

<snipped>

csshacker 0 Newbie Poster

Hello, ohtechie here is the solution of your problem n i hope u understand this.

## this is your page where gose horizontal menus

<html>
<head>
<title>Home</title>
<link href="menu.css" rel="stylesheet" type="text/css">
</head>
<body>

<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="#" id="current">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
<li><a href="#">Item five</a></li>
</ul>
</div>

</body>
</html>

## This is CSS file ( menu.css )

#navlist li
{
display: inline;
list-style-type: none;
padding: 5px;
background: #004080;
margin-left: 2px;

}

a
{ text-decoration: none;
	color:yellow;
	font-weight: bolder;
}

<snipped>

/* End of Css File */

csshacker 0 Newbie Poster

Hi, i have a simple idea about "Css on Different resolution", See Example Below:-

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Css on Different resolution</title>

<script type="text/javascript">
  if(screen.width==1024)
	 {
	 	document.write("<link rel='stylesheet' type='text/css' href='style_1024.css' />"); // this css runs in only 1024 resulation
	 }
  else
  	{
	    document.write("<link rel='stylesheet' type='text/css' href='style_other.css' />"); // for other resulatiom
	}
</script>

</head>

<body>

</body>
</html>

<snipped>