Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 148
Search took 0.92 seconds.
Search: Posts Made By: sftl99
Forum: Medium projects (new script, new features, etc) 11-01-2012, 08:03 PM
Replies: 1
Views: 1,360
Posted By sftl99
Twitter radius search using current location

1) Project Details:
A text box to enter a search query plus a drop-down that has numerical values for a mile search radius that then outputs to a Twitter search showing results within the radius of...
Forum: Medium projects (new script, new features, etc) 09-20-2012, 02:31 PM
Replies: 2
Views: 809
Posted By sftl99
Emailed.

Emailed.
Forum: Medium projects (new script, new features, etc) 09-19-2012, 07:29 PM
Replies: 2
Views: 809
Posted By sftl99
Template Customization, Image Upload Hex, More...

It's been so long since I've coded that it's somewhat of a foreign language to me again. Not to mention I'm crushed for time in the process of starting a new company. Ergo, I'm coming here to pay...
Forum: Ajax and Design 04-07-2008, 08:22 PM
Replies: 0
Views: 1,159
Posted By sftl99
Submitting HTML/Javascript via AJAX

Nevermind this post, I'm going to use a WYSIWYG, so much easier.
Forum: Ajax and Design 04-07-2008, 08:15 PM
Replies: 2
Views: 1,257
Posted By sftl99
Ha! Thanks, Eric. Of all the code my mistake...

Ha! Thanks, Eric. Of all the code my mistake was in the HTML part...I'm an idiot.
Forum: Ajax and Design 04-07-2008, 06:11 PM
Replies: 2
Views: 1,257
Posted By sftl99
IE Working, FF Not

I have two issues, but I want to deal with the first one which is my code is working in IE but in FF I get an error:

Here is test.html
<html>
<body>

<script language="javascript"...
Forum: Ajax and Design 05-04-2007, 04:20 PM
Replies: 2
Views: 4,515
Posted By sftl99
PHP submit without reload

See the link below. The PHP is fine, but if you start clicking through thumbnails you can see that the page's functionality is suffering big time. The page must reload to pass the PHP variables. ...
Forum: MySQL 05-01-2007, 06:58 PM
Replies: 3
Views: 841
Posted By sftl99
The first query must have a WHERE clause in order...

The first query must have a WHERE clause in order to know which results (thumbnails in this case) to loop through in the while statement. Make sense?
Forum: MySQL 04-30-2007, 10:59 PM
Replies: 5
Views: 966
Posted By sftl99
I totally agree, however he may have needed a...

I totally agree, however he may have needed a workaround regardless of whether or not it's a good idea.
Forum: MySQL 04-30-2007, 10:15 PM
Replies: 5
Views: 966
Posted By sftl99
you could always explode the data. let's say the...

you could always explode the data. let's say the field name is "data". when you display $data you get "word 1, this, another thing, 4th thing, hello" (to use your example). the following should...
Forum: MySQL 04-30-2007, 09:43 PM
Replies: 3
Views: 841
Posted By sftl99
Finding First Record and Displaying

The code below is a simplified version of code that is first creating a looping gallery of thumbnails based on the URL which would have ?c=Something. Then once the link is clicked, it adds &v=SKU. ...
Forum: PHP 12-20-2006, 08:17 PM
Replies: 5
Views: 846
Posted By sftl99
how are you storing information that tells how...

how are you storing information that tells how many users are online? if you're using a mysql, show the structure, then finding the highest value will be relatively easy. i believe this is how...
Forum: PHP 12-03-2006, 10:01 PM
Replies: 1
Views: 668
Posted By sftl99
Ha, I figured out a workaround, pretty easy too: ...

Ha, I figured out a workaround, pretty easy too:

<form action="addmulti.cfm" method="post">
<input type="hidden" name="userid" value="1234">
<?
$i = 0;
if($cart->itemcount > 0) {
...
Forum: PHP 12-03-2006, 09:04 PM
Replies: 1
Views: 668
Posted By sftl99
Defining Count

I need "$i" to equal 1, 2, 3, etc. depending on which record is being displayed from the code below. I already have echo($i) in there, I just don't know how to define $i as necessary.
<form...
Forum: PHP 11-30-2006, 09:44 PM
Replies: 2
Views: 670
Posted By sftl99
thank you.

thank you.
Forum: PHP 11-30-2006, 09:07 PM
Replies: 2
Views: 670
Posted By sftl99
Breaking up Field Value (doable?)

"$cart" is being submitted to a form, but it contains information that I need to break apart and have separate field names for (i.e. $cart[0], $cart[1], $cart[3]).

The format it is being submitted...
Forum: JavaScript programming 08-29-2006, 03:59 PM
Replies: 0
Views: 1,350
Posted By sftl99
Apply CSS to Iframe

I need to apply a .css stylesheet to an iframe. I am displaying my Google calendar in an iframe on one of my pages and inside the calendar code there are classes for everything...
Forum: PHP 02-08-2006, 05:48 PM
Replies: 15
Views: 1,111
Posted By sftl99
Well, the database is a list of 30,000 parts in a...

Well, the database is a list of 30,000 parts in a CSV that was given to me already formatted. My entire memory configurator is written with workarounds that have been a sqillion times faster than...
Forum: PHP 02-08-2006, 05:22 PM
Replies: 3
Views: 582
Posted By sftl99
make $txt = str_replace("[ url= ")," ]")...

make
$txt = str_replace("[ url= ")," ]") ,"", $txt);
into
$txt = str_replace("[ url= "," ]" ,"", $txt);

you had an end ) all throughout, get rid of them and it should work.
Forum: PHP 02-08-2006, 05:14 PM
Replies: 15
Views: 1,111
Posted By sftl99
ORDER BY FIELD( Description1, '128MB', '256MB',...

ORDER BY FIELD( Description1, '128MB', '256MB', '512MB', '1GB' )

that works, only there's a lot more variables involved that i just didn't mention like 128MB DIMM, 512MB ECC DIMM, 1GB Single Rank,...
Forum: PHP 02-08-2006, 04:29 PM
Replies: 15
Views: 1,111
Posted By sftl99
I thought about doing the whole thing manually, I...

I thought about doing the whole thing manually, I guess I could write the code, but how do I set a sort variable to a field that hasn't been pulled from the table yet? Does that question make sense?...
Forum: PHP 02-08-2006, 04:22 PM
Replies: 7
Views: 692
Posted By sftl99
i just love that firepages said the word...

i just love that firepages said the word "sqillions"
Forum: PHP 02-08-2006, 04:17 PM
Replies: 6
Views: 911
Posted By sftl99
I'm curious why you want to use EPS format. I...

I'm curious why you want to use EPS format. I know this is off the PHP topic, but EPS format is really only going to benefit you if it is in vector format which would prove to be extremely difficult...
Forum: PHP 02-08-2006, 04:11 PM
Replies: 15
Views: 1,111
Posted By sftl99
ORDER BY, Sorting Question

I've got some part #'s that I'm trying to sort, but ORDER BY PartNumber is outputting logically, but logic in this case doesn't help. Is there any way to manipulate the ORDER BY?

My specific...
Forum: JavaScript programming 02-02-2006, 11:44 PM
Replies: 3
Views: 1,383
Posted By sftl99
you guys rock. i ended up using a php solution...

you guys rock. i ended up using a php solution as the rest of the page is already in php. i'm sorry to have wasted space here, but there's other stuff i can use here so thanks!

the desired field...
Showing results 1 to 25 of 148

 
Forum Jump

All times are GMT +1. The time now is 07:26 AM.