Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 3
1
2
3
>
Showing results 1 to 25 of 64
Search took
0.19
seconds.
Search:
Posts Made By:
jayemvee
Forum:
PHP
07-29-2009, 10:36 AM
Replies:
3
Parsing Custom Tags
Views:
516
Posted By
jayemvee
What I ultimately want to do is pull from an HTML...
What I ultimately want to do is pull from an HTML chunk:
(example)
<div class="blog">
<module display="posts" limit="10" show="excerpt" />
</div>
<div class="sidebar">
<module...
Forum:
PHP
07-29-2009, 10:23 AM
Replies:
3
Parsing Custom Tags
Views:
516
Posted By
jayemvee
Parsing Custom Tags
I am trying to create a couple tags, that I can use for a simple templating engine within my app. I basically want to do something like
<customtag foo1="bar1" foo2="bar2" />
I want to be able...
Forum:
MySQL
12-07-2008, 04:23 PM
Replies:
2
Cycling through rows, smartly?
Views:
780
Posted By
jayemvee
FOund it
I have done typical pagination. But in this sense, I am not loading the album itself. Only the photo for a user to view. I wanted there to be a next / previous button and photos without any other...
Forum:
MySQL
12-07-2008, 01:16 AM
Replies:
2
Cycling through rows, smartly?
Views:
780
Posted By
jayemvee
Cycling through rows, smartly?
I was wondering, what I would need to do the following. In this scenario, we have albums of photos.
2 Tables albums and photos.
So, if I were to pull a photo like so:
SELECT * FROM photos...
Forum:
MySQL
04-29-2008, 12:24 AM
Replies:
1
Multiple Sort Order using Like
Views:
743
Posted By
jayemvee
This was a stupid mistake. I have had this...
This was a stupid mistake. I have had this problem for about a week now.
Here's the solution
The column, was full of numbers but some text, so I set it as varchar. Well it just so happens. It...
Forum:
PHP
04-28-2008, 11:45 PM
Replies:
5
PHP form will not submit - Plz help
Views:
980
Posted By
jayemvee
Unless you're using javascript to submit your...
Unless you're using javascript to submit your form, I would change the input type from "button" to "submit" that should get you started.
Otherwise you can put an onClick="submitMe();" in there...
Forum:
MySQL
04-28-2008, 11:27 PM
Replies:
1
Multiple Sort Order using Like
Views:
743
Posted By
jayemvee
Multiple Sort Order using Like
I am having an issue where two very similar queries... Are giving drastically different results.
The first:
SELECT * FROM docindex WHERE HWValues='Prostate' GROUP BY HWID ORDER BY MetaDataType...
Forum:
HTML & CSS
10-24-2007, 10:41 PM
Replies:
1
IE6 Auto Height
Views:
557
Posted By
jayemvee
Sorry this is the parent element ...
Sorry this is the parent element
#subpage_content
{
position: relative;
width: 895px;
background-color: #ffffff;
padding: 0px 0px 5px 0px;
}
Forum:
HTML & CSS
10-24-2007, 10:35 PM
Replies:
1
IE6 Auto Height
Views:
557
Posted By
jayemvee
IE6 Auto Height
I am having issues with auto height in IE6..
I have 2 relative divs.. where the div on the left (navigation) needs to be the same height as div 2 no matter what. I can't do it another way it has...
Forum:
HTML & CSS
07-27-2007, 11:17 PM
Replies:
4
IE Sucks.. Quick Layout question
Views:
695
Posted By
jayemvee
Here's a screenshot
The project got put on hold... you can see it now @ www.sethc.com
It looks fine in FF if you need comparison.
heres what it looks like in IE 6 (screenshot attatched, ignore the blotchyness. The...
Forum:
PHP
07-16-2007, 03:25 AM
Replies:
6
creating subdomains
Views:
1,406
Posted By
jayemvee
From Google Dynamic subdomains... like on...
From Google
Dynamic subdomains... like on imeem and such...
$site_url = strtolower($_SERVER['HTTP_HOST']);
if(strpos($site_url,':')) $site_url = substr($site_url,0,strpos($site_url,':'));
...
Forum:
MySQL
07-16-2007, 03:21 AM
Replies:
5
View History for E-Store
Views:
1,101
Posted By
jayemvee
K, there is no E-Store yet.... It's just an idea....
K, there is no E-Store yet.... It's just an idea.
So using the table examples i put above lets say I were to try
SELECT
items.item_name,
items.id,
items.price
...
Forum:
MySQL
07-15-2007, 09:47 PM
Replies:
5
View History for E-Store
Views:
1,101
Posted By
jayemvee
Heh.. I haven't... That portion doesn't make...
Heh.. I haven't... That portion doesn't make sense in my head because I can't figure out how I would do it without ONLY getting the the items viewed...
Forum:
MySQL
07-15-2007, 12:35 AM
Replies:
5
View History for E-Store
Views:
1,101
Posted By
jayemvee
View History for E-Store
Hey guys and gals... I am just recently getting into the realm of querying multiple tables and I've run into a bit of a pickle.
example
--------------
items_table
--------------
id
item_name...
Forum:
HTML & CSS
07-11-2007, 09:26 PM
Replies:
4
IE Sucks.. Quick Layout question
Views:
695
Posted By
jayemvee
Hey, for some reason the #splash was below the...
Hey, for some reason the #splash was below the navigation...
I tried changing the widths but then i have a gap between that grey square and the right content.
Forum:
HTML & CSS
07-11-2007, 08:42 PM
Replies:
4
IE Sucks.. Quick Layout question
Views:
695
Posted By
jayemvee
IE Sucks.. Quick Layout question
To see a sample look @ sandbox.rafinko.com it is obvious what the problem is..
It looks retarded in IE6.
Looks fine in IE7, FF and that's all I have tested it in so far...
Any help would...
Forum:
MySQL
06-26-2007, 04:48 AM
Replies:
5
get records from the last hour
Views:
1,054
Posted By
jayemvee
a few examples
$days_30 = mysql_num_rows(mysql_query("SELECT * FROM notify_list WHERE created_at BETWEEN DATE_SUB(NOW(), interval 30 DAY) AND NOW()"));
$days_15 = mysql_num_rows(mysql_query("SELECT * FROM...
Forum:
MySQL
06-26-2007, 02:44 AM
Replies:
1
query question.
Views:
582
Posted By
jayemvee
query question.
If I was querying MySQL and the table was as follows.
threads
--------------
id
subject
to_id
from_id
messages
Forum:
JavaScript programming
06-14-2007, 06:02 PM
Replies:
4
Scrollbar as a percentage
Views:
982
Posted By
jayemvee
I'm trying to do something similar to dzone dot...
I'm trying to do something similar to dzone dot com.
The goal is when the scrollbar reaches the bottom to populate more results.
Thanks
Forum:
HTML & CSS
06-14-2007, 06:00 PM
Replies:
4
margin: auto for ie
Views:
806
Posted By
jayemvee
I totally agree with you... That was a quick and...
I totally agree with you... That was a quick and dirty thing. Thanks for the help.. it works
Forum:
JavaScript programming
06-08-2007, 09:59 AM
Replies:
4
Scrollbar as a percentage
Views:
982
Posted By
jayemvee
Can this even be done?
Can this even be done?
Forum:
JavaScript programming
06-05-2007, 11:22 PM
Replies:
4
Scrollbar as a percentage
Views:
982
Posted By
jayemvee
Scrollbar as a percentage
Does anyone know how to accomplish this?
I've done it but the document.body.scrollTop surpasses clientHeight?
Is there something special I need to do?
Here's what I have that doesnt work
if...
Forum:
HTML & CSS
06-01-2007, 04:36 AM
Replies:
4
margin: auto for ie
Views:
806
Posted By
jayemvee
margin: auto for ie
I have a background image that repeats to border the left and right side of my content... the content is wrapped with
.wrap800{
width: 800px;
margin-left: auto;
margin-right: auto;
}
...
Forum:
MySQL
05-28-2007, 05:29 AM
Replies:
1
GMAIL Style threading
Views:
716
Posted By
jayemvee
45 Reads NO RESPONSE AAH
It's still bugging me...
Would it be possible to maybe have a last_activity (datetime) in the threads table and update it when a new message is sent.. to identify...
please i't's killing me
Forum:
MySQL
05-24-2007, 05:08 AM
Replies:
1
GMAIL Style threading
Views:
716
Posted By
jayemvee
GMAIL Style threading
I am trying to create a messagins system for a site I am working on... I wanted to do the GMAIL style threading, I keep getting stuck on how to know when it should be in the inbox, when it should be...
Showing results 1 to 25 of 64
Page 1 of 3
1
2
3
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
05:38 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.