-
Replied To a Post in Is it possible to truly hide a url?
Dani, yea, i seen that, it gets set by the jquery that I have. I have tried to take it out but then the file manager will not work. I … -
Replied To a Post in Is it possible to truly hide a url?
This is what i see... -
Replied To a Post in Is it possible to truly hide a url?
Diafol, I think it would be easier to set a condition to check if that user is logged in, but I am finding it difficult to set that condition, here … -
Replied To a Post in Is it possible to truly hide a url?
No, it still shows up when i go into a subfolder... -
Replied To a Post in Is it possible to truly hide a url?
Im about to -
Replied To a Post in Is it possible to truly hide a url?
So something like this would work? # Nice looking URLs (no query string) # domain.com/category-name-1/ to domain.com/category.php?name=category-name-1 RewriteRule ^([A-Za-z0-9-]+)/?$ filemgr.php [L] -
Created Is it possible to truly hide a url?
I have a url that is `filemgr.php` when a user navigates to lower levels of said file manager it shows up as `filemgr.php#userfiles/username/Images` Is there a way to just have … -
Began Watching Is it possible to truly hide a url?
I have a url that is `filemgr.php` when a user navigates to lower levels of said file manager it shows up as `filemgr.php#userfiles/username/Images` Is there a way to just have … -
Began Watching how to create a simple log in system using php and mssql
can any body help me or give me an sample code on how to create a very simple log in system using php and mssql..tnx in advance. -
Replied To a Post in how to create a simple log in system using php and mssql
http://www.phpeasystep.com/workshopview.php?id=6 -
Began Watching Meta description show post HELP!
How to meta description get value from post? -
Replied To a Post in Meta description show post HELP!
set a database field called metadescription then on page load do something like <meta name="description" content="<?php echo $metadescription ?>"> then it will echo the description of each post when you … -
Replied To a Post in File Manager for Website
I got the toplevel to show my username folder. But when i click on it it does not show the next levels. Here is my updated code. <?php /******************************** Simple … -
Replied To a Post in File Manager for Website
I did find this one, I do like it, I need to know how to target the username path as the top level. <?php /******************************** Simple PHP File Manager Copyright … -
Edited File Manager for Website
Hey Guys, I am looking for a file manager that will allow me to customize the top level folder( to the user that is logged in) as the top level. … -
Created File Manager for Website
Hey Guys, I am looking for a file manager that will allow me to customize the top level folder( to the user that is logged in) as the top level. … -
Began Watching File Manager for Website
Hey Guys, I am looking for a file manager that will allow me to customize the top level folder( to the user that is logged in) as the top level. … -
Began Watching Input Type onclick help needed
Code1: <input id="text" type="text" name="fname" value="First Name" onclick="this.value='';"/> Hi Friends, Code1 - this print in my text box value "First Name". onclick this value gets erased so I can type … -
Replied To a Post in Input Type onclick help needed
Use placeholder tag, its easier... <input id="text" type="text" name="fname" placeholder='First Name"/> -
Began Watching datepicker
hi i have used datepicker for picking date and i need to validate for empty value .i should not allow the user to go to next page without selecting any … -
Replied To a Post in datepicker
http://jsfiddle.net/jquerybyexample/EywSP/ -
Created Change date format to ISO 8601 using jquery
I have 2 input fields that when a user inputs the date in say mm-dd-yyyy format, i would like to have it automatically change to yyyy-mm-dd (ISO 8601 Date Format) … -
Began Watching Change date format to ISO 8601 using jquery
I have 2 input fields that when a user inputs the date in say mm-dd-yyyy format, i would like to have it automatically change to yyyy-mm-dd (ISO 8601 Date Format) … -
Replied To a Post in validate before login using fucntions
I know, That is why i am asking where the proper placement is for the validation, Currently its under the login script after its successful. But I am also not … -
Replied To a Post in validate before login using fucntions
and at the top of my page i have: `include_once 'validateKey.php';` -
Replied To a Post in validate before login using fucntions
Im unsure where to put the variable to validate the license, here is what i have so far, function login($email, $password, $mysqli) { // Using prepared statements means that SQL … -
Created validate before login using fucntions
Hello, I am working on some code that does a remote call to a licensing server to validate whether the license is valid, invalid, expired and suspended. I have a … -
Began Watching validate before login using fucntions
Hello, I am working on some code that does a remote call to a licensing server to validate whether the license is valid, invalid, expired and suspended. I have a … -
Replied To a Post in CSS and paypal button
Please use the </>Code button to paste code, please resubmit it... -
Replied To a Post in CSS and paypal button
try this: #rightside .paypal{height:15px; width:45px;} then add the class to the form of `class='paypal'` -
Replied To a Post in session_start() Cannot send session cookie
http://php.net/manual/en/function.setcookie.php http://php.net/manual/en/function.session-start.php -
Began Watching session_start() Cannot send session cookie
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at index.php:3) index.php on line 3 I have tried this a number of ways but I … -
Replied To a Post in session_start() Cannot send session cookie
there is no session set, so it is going to return false. <?php include('file_that_contains_connect_and_registers_cookie); session_start(); ?> -
Began Watching CSS and paypal button
I seem to have a problem with a paypal button. I am using expression web 4 to design this site I wanted the paypal button to show up on all … -
Replied To a Post in CSS and paypal button
post code for button? -
Began Watching Reading from DB
I have set up a data base called assignment with a table called 'Parts' in it. But when i run the follwoing code on my local host i get the … -
Replied To a Post in Reading from DB
Your looking for a table called parts, yet you are querying a table named users? -
Created Delete from Database
I have a code that i want to throw an error if there is no items to delete or if there is items it proceeds with deleting the items, here … -
Began Watching Delete from Database
I have a code that i want to throw an error if there is no items to delete or if there is items it proceeds with deleting the items, here … -
Replied To a Post in <li> problem with arrow
This might not be much, but you seem to have the ul, li tags defined twice in your css. What order do you have the css link scripts in? on … -
Began Watching <li> problem with arrow
Hi, I have one website and decided to do some changes, for example to use Vertical flyout menu. So, I picked the right one from this page: http://cssmenumaker.com/menu/green-segoe-flyout-menu Added link … -
Replied To a Post in <li> problem with arrow
I just looked at it on my side, and its working like you want, here is a screenshot -
Began Watching undefine variable $config
http://www.infracom.co.id/infracom/InfRaAdmIn337/index.php index.php <div class="login-header"> <div class="logo clear"> <img src="http://img.cr7.web.id/assets/wds-logo-circle.png" alt="" class="picture" /> <span class="textlogo"> <span class="title"><?php echo strtoupper($config['sitename']); ?></span> <span class="text"><?php echo strtoupper(ADMIN_TPL); ?></span> </span> </div> </div> Line 89: <span … -
Replied To a Post in undefine variable $config
In your mysqli statement, you have `$config` defined right? if not, put at the top of your statement, $config ==""; then try again. But you are using it to show … -
Began Watching anchor onclick show image but disappears
hey guys so i have these drop down menu using ul and anchor and when i click on one an image should be displayed. the problem is when i click … -
Replied To a Post in anchor onclick show image but disappears
Try this: <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Toggle images</title> <style> .hidden{display:none;} </style> </head> <body> <ul> <li><a href="" id="6seat">6 Seater</a></li> <li><a href="" id="8seat">8 Seater</a></li> <li><a href="" id="10seat">10 Seater</a></li> … -
Began Watching Banner Ads
I am very new to this and have been given code for a website i have. Please can someone help me and let me know how to convert code to … -
Replied To a Post in Banner Ads
Like this? http://i-like-robots.github.io/jQuery-Slideshow/ -
Marked Solved Status for Add social flags to bottom of bootstrap nav using css
Hey everyone, I have navbar from boostrap, I am trying to get the flags to append to the bottom/hang from the bottom of the nav on right side. [Link](https://www.assets.patrickspcrepair.com/gotya/simple-sidebar.html) to … -
Replied To a Post in Add social flags to bottom of bootstrap nav using css
got it resolved: <div class="socialfb"> <a href="#" target="_blank"><img id="fbimg" src="./img/icons/facebook.png"></a> </div> <div class="socialtw"> <a href="#" target="_blank"><img id="twimg" src="./img/icons/twitter.png"></a> </div> .socialfb { top:51px; right:100px; height:30; width:30; background-repeat:no-repeat; position:fixed; z-index: -1; } …
The End.