Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 23 of 23
Search took 0.09 seconds.
Search: Posts Made By: cedsn
Forum: MySQL 12-17-2003, 08:54 PM
Replies: 1
Views: 625
Posted By cedsn
selecting rank over time

I have 4 colums in my table.. they are id(int), usrid (int), datestamp (date) and credits(float).

here's what i'd like to do.. select the numeric rank of a given userid over the past 30 days based...
Forum: PHP 12-10-2003, 05:46 AM
Replies: 4
Views: 643
Posted By cedsn
actually i would love to use something like that,...

actually i would love to use something like that, but unfortunately it's not going to work in the context of this project.. ultimately i'm writing a script that needs to work on any server w/ apache...
Forum: PHP 12-09-2003, 10:11 PM
Replies: 4
Views: 643
Posted By cedsn
yeah, i've got it as far as what you mentioned,...

yeah, i've got it as far as what you mentioned, however i'm running into problems if the changes involve more than one line.. if file 1 is a 10 line file and file 2 is that same as file one except...
Forum: PHP 12-09-2003, 06:27 PM
Replies: 4
Views: 643
Posted By cedsn
file comparison - diffs

I'm attempting to write a function that will compare 2 input files line by line and output the differences as a readable page, with blocks of different lines outlined and displayed twice.. and the...
Forum: Perl/ CGI 11-03-2003, 06:46 PM
Replies: 5
Views: 1,852
Posted By cedsn
i'm no regular expressions expert, but i can...

i'm no regular expressions expert, but i can offer a little explanantion.



[tr]anslating any character in the A-Z set of capital letters to its corresponding lowercase character.. or in other...
Forum: PHP 10-13-2003, 11:58 PM
Replies: 0
Views: 848
Posted By cedsn
php to connect to authorize.net

I want to use php to connect to authorize.net via their aim method.. I have done this using perl and the net:ssleay module to create a secure connection.. in my research for doing this w/ php i saw...
Forum: Graphics and Multimedia discussions 02-28-2003, 06:04 AM
Replies: 3
Views: 1,948
Posted By cedsn
I have been able to use them before with...

I have been able to use them before with success.. however for the site I am working on right now, on a different hosting provider than the one I normaly use, the ASX file just displays as a text...
Forum: Graphics and Multimedia discussions 02-28-2003, 04:10 AM
Replies: 3
Views: 1,948
Posted By cedsn
.asx files

Do .asx files require Active Server Page scripting support?
Forum: Graphics and Multimedia discussions 02-25-2003, 03:11 PM
Replies: 3
Views: 1,127
Posted By cedsn
I've had good results doing that using premiere.....

I've had good results doing that using premiere.. they have a fully functional 30 day trial version you can try

--jesse
Forum: Graphics and Multimedia discussions 02-24-2003, 04:26 AM
Replies: 0
Views: 2,354
Posted By cedsn
smil and quicktime

I am trying to setup a quick time movie to be able to play with a caption file that is separate from the movie.. I created the caption text file with Magpie, and have also used quicktime to generate...
Forum: General web building 02-16-2003, 07:44 PM
Replies: 1
Views: 564
Posted By cedsn
xml -> html -> pdf

I'm stuck here.. need some help.

My client wants a website that dynamically displays in either html or pdf. my thought was to use xml for the page content, then have that translated on the fly to...
Forum: HTML & CSS 02-16-2003, 05:58 AM
Replies: 3
Views: 685
Posted By cedsn
perfect! thanks.

perfect! thanks.
Forum: HTML & CSS 02-16-2003, 05:33 AM
Replies: 3
Views: 685
Posted By cedsn
CSS and h1 manipulation

I have a header in my page, using the h1 tag.
I need to use this tag logically, but I also would like to remove the extra space that shows up between the h1 text and the text below it. Why this...
Forum: XML 01-21-2003, 04:51 AM
Replies: 3
Views: 1,976
Posted By cedsn
OK, some dumb questions if you don't mind.. one...

OK, some dumb questions if you don't mind.. one xml document for each page, or the whole site?

So is XHTML just xml converted to html via xslt?

And is what you are describing something that...
Forum: XML 01-21-2003, 04:26 AM
Replies: 3
Views: 1,976
Posted By cedsn
xml -> html -> pdf

Ok, I hope somebody can at least tell me where to get started on this project..

I need to build a website that will be 10 - 15 static pages. One of the requirements is that all the pages will...
Forum: Perl/ CGI 09-08-2002, 03:42 AM
Replies: 1
Views: 1,767
Posted By cedsn
detect flash

can somebody show me how to detect whether or not the user has the flash plugin installed, and what version using perl?
Forum: HTML & CSS 08-19-2002, 02:58 AM
Replies: 3
Views: 981
Posted By cedsn
actually, i found the solution already, if you're...

actually, i found the solution already, if you're interested..


put the entire movie in a div, with a z-index:0, then add this parameter:

<PARAM NAME="WMODE" VALUE="transparent">


work...
Forum: HTML & CSS 08-19-2002, 02:02 AM
Replies: 3
Views: 981
Posted By cedsn
menus

i am working on some drop down menus for a site, and they are working OK but the client wants to have a flash animation on the page.. the menus are done in dhtml, but they don't go over the flash...
Forum: MySQL 08-13-2002, 05:37 AM
Replies: 1
Views: 1,455
Posted By cedsn
Question fuzzy matches

how do i get fuzzy or pattern matches from mysql?

for example, i have an entry,

APP 11-32

now, i have set up a search script that querys the db with

select * from table where partnumber...
Forum: Perl/ CGI 08-10-2002, 06:22 AM
Replies: 5
Views: 1,852
Posted By cedsn
that did it! first i had to lowercase...

that did it!

first i had to lowercase everything with
$data =~ tr/A-Z/a-z/;

then user your snippet there and worked like a charm.

thanks!
Forum: Perl/ CGI 08-10-2002, 01:53 AM
Replies: 5
Views: 1,852
Posted By cedsn
capitalizing variables for display

I'm sure this is something simple, but as I'm a bit new to regular expressions, it's giving me a headache.

what i want to do is take a character string of varying lengths of words and capitalize...
Forum: Perl/ CGI 08-06-2002, 05:30 AM
Replies: 5
Views: 1,950
Posted By cedsn
within your script, assuming you have parsed the...

within your script, assuming you have parsed the input from the url..

<input type=text name=em value=$fields{'em'}>

then that value will show up in the form field, and they can change it if...
Forum: HTML & CSS 08-06-2002, 05:26 AM
Replies: 1
Views: 819
Posted By cedsn
css positioning

I am trying to setup a series of hidden menus that will drop down on mouseover.. getting the menus to appear is working OK, but I am having some issues with the positioning..

I tried using...
Showing results 1 to 23 of 23

 
Forum Jump

All times are GMT +1. The time now is 03:18 AM.