Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~5K People Reached
Member Avatar for nigelburrell

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 …

Member Avatar for ripraw
0
1K
Member Avatar for pranayshedge
Member Avatar for nigelburrell

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] …

Member Avatar for Troy III
0
476
Member Avatar for nigelburrell

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?

Member Avatar for nigelburrell
0
84
Member Avatar for nigelburrell

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 …

Member Avatar for nigelburrell
0
114
Member Avatar for nigelburrell

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']; } …

Member Avatar for nigelburrell
0
162
Member Avatar for nigelburrell

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. …

Member Avatar for FlashCreations
0
117
Member Avatar for nigelburrell

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 …

Member Avatar for nigelburrell
0
163
Member Avatar for nigelburrell

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 …

Member Avatar for almostbob
0
190
Member Avatar for nigelburrell

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 …

Member Avatar for diafol
0
2K
Member Avatar for nigelburrell

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

Member Avatar for Josh Connerty
0
184