No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
Its because when u cconnect to your db u set the host as Localhost maybe
[CODE] RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule (.*) index.php/$1 [/CODE] my url = localhost/mvc/ i work on windows in xampp i have a problem when i go to my url /404 i thinks i am on localhost/ so it redirects me to localhost/xampp/splash.php but it …
you need to set login session or just [CODE]session_start(); // undefined index: login if (isset($_SESSION['login'])){ echo[/CODE]
you need to define $votes as an array like [CODE]$votes = array();[/CODE]
i am not sure but maybe its because its like an array start from 0
put it into an array and a foreach loop
vibhadevit you can still turn on and off on javascript
make a query from the session your are logget in with
how do u mean u could just say [CODE] mysql_connect("host", "username", "pass"); mysql_select_db("db_name"); $your_name = "2"; $query "SELECT * FROM table_name WHERE collum_name = '$your_number'"; $result = mysql_query($query); if(mysql_numrows($result) >= 1) { echo "That Column_Name already exists. Please change the Column_Name."; } [/CODE]
when u pick a date from your calender how does it look in the text field
when u output the php row write this [CODE] <?php $query = "your select"; $result = mysql_query($query); while($row = mysql_fetch_asssoc) { nl2br($row['yourrow']); } ?> [/CODE] this is a php function use this hope it helps u
The End.