- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
11 Posted Topics
Hi, I trying select records where a field contains only one character of a string of characters. i.e. [code=sql]SELECT * FROM users WHERE user_role [contains any one character from...] 'ASD'[/code] so in this case, the query would return all records where the value of 'user_role' field is either 'A' or … | |
Re: [QUOTE=pranayshedge;1046288]Which all programming languages do I need to learn to become a webmaster?[/QUOTE] There's a lot of different web languages to consider, and depends on what type of development you're interested in pursueing... I don't think there's some "definitive list" as such that applies to every person, so I would … | |
I'm trying to use DIVs contained within a DIV to show content which is centered horizontally on the page, as per this example. +=========== DIV 1 ===========+ +------+=====+=====+=====+-------+ +------+ DIV 2 + DIV 2 + DIV 2 +--------+ +------+=====+=====+=====+-------+ +==========================+ Here's the CSS and HTML code I'm using: CSS [CODE] … | |
I am building a website for users that exist around the world and need to show the user's "local machine" time and timezone, not the time of the website host server. Is there a javascript function or process to determine this? | |
I am building a project management website which enables users from around the world to login and automatically register their time against various work projects. I need to save their login time to the database using their "local machine" time (the time as it exists for them, not the time … | |
In my webpage I'm using the PHP function mysql_fetch_array to check if records are successfully retrieved from the database. If records are returned then I can assign variables with the database fields... [code=php] $checkdb = mysql_query("SELECT * FROM products"); if ($info = mysql_fetch_array( $checkdb )) { $productName = $info['ProductName']; } … | |
Hi, I'm using a joomla cms to build a website, and have discovered that joomla uses a built-in plug-in called Email Cloacking which obfuscates email addresses prior to showing them on the webpage. They simply appear as "mailto" links which makes it harder for scrapers and bots to pick up. … | |
Hi, I'm not entirely sure which forum to post this question because I cannot determine whether it's a MySQL, Joomla, or PHP issue. But I will post it here, as some of you may know about this. I am using a custom built "user" table in my MySQL database, and … | |
Whenever I echo or print a string containing an email address to my webpage the HTML code automatically parses the text and shows it as a "mailto" link. If I use... echo "Hello"; it prints Hello as expected on the webpage. If I use... echo "hello@whatever.com"; it now appears as … | |
Hi I am developing a login screen for my website, with usercode and password fields, and a Login button. I need to know how I can make the Login button automatically submit when the user hits the Enter key in either field (as apposed to the user clicking the Login … ![]() | |
I have a website using MySQL database. When I retrieve any user's email address from my user table and show (echo) it to the webpage it always appears as a link. How can I show user's email address as plain text? Thanks Nigel |
The End.