Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

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
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
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
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
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
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
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
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
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
Views: 557
Posted By jayemvee
Internet Explorer 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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

 
Forum Jump

All times are GMT +1. The time now is 05:38 PM.