Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
About Me

Web designer for over 10 years, utilizing php, asp, mysql, js, ajax, and I tinker with flash from time to time

PC Specs
Windows 7 64bit 1TB storage, 4GB DDR3 ram. radeon HD 46xx vid card with 2GB ram.
Favorite Forums
Favorite Tags
Member Avatar for petrakid

I am using jquery.filedrop.js to create a HTML5 drop box for users. Currently I have it working about 2/3s the way I want it to. The company does yearly conferences, and I have a file path 'file/path/to/conferencefiles' where I save media (docs, images, vids, etc) based on the YEAR of …

Member Avatar for unikorndesigns
0
896
Member Avatar for petrakid

Normally when I do file uploads I save the files into the website's file system. However in this particular situation I am required to save the PDF files as a longblob into a table in our mysql database. The data field is set as a longblob, and the table is …

0
124
Member Avatar for petrakid

I have a large text string which is queried from a database. It can be several thousand words long. As of right now, when the search is run, it pulls all of the text and then prints the first 150 characters: [code] echo '<span class="line3">'. strip_tags(truncateText($sermontext, 150)) .'</span>'; [/code] The …

Member Avatar for petrakid
0
134
Member Avatar for petrakid

I have two scripts. The first script creates a row in a table: [CODE] function addRow(tblId) { if(counter == limit) { alert("You cannot add more than " + limit + " passages!"); } else { var tblBody = document.getElementById(tblId).tBodies[0]; var newNode = tblBody.rows[0].cloneNode(true); tblBody.appendChild(newNode); counter++; } } [/CODE] ... the …

0
91
Member Avatar for petrakid

I am trying to write a script that will update my database(s) without the user having to click any buttons. I also want the update to occur whenever a field is modified in the form. So here is an example form [CODE] <form> <input type="text" name="fieldone" value="currentvalfromdb" onChange="updateDB()" /> <select …

Member Avatar for petrakid
0
1K
Member Avatar for petrakid

Hi. I have a div which contains dynamic content populated with AJAX (user has two select boxes to filter query results) However when filtered results extend past the initial height of the div in question, the div remains the same size and the results overflow out of my content area. …

Member Avatar for Pnorq
0
1K
Member Avatar for petrakid

Hello, I created an events calendar which allows the user to add events. The events adding allows for daily, weekly, monthly (and yearly) events creation. Well, everything works GREAT, except for this one little problem that I can't get my head around. when creating a repeating event that repeats on …

Member Avatar for petrakid
0
340
Member Avatar for petrakid

I have two text boxes and I want them both to submit the same data, such as if the user changes one text box, the other changes to the same value [U]and vise versa[/U]. I am easily able to make one textbox update the second with javascript, but not the …

Member Avatar for petrakid
0
471
Member Avatar for petrakid

I am writing a script for an events calendar for one of several websites I manage (I know there are plenty of scripts out there, but it's easier for me to do this from scratch). It has been requested of me to incorporate recurring events into the events creation page. …

Member Avatar for petrakid
0
889