Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~11.0K People Reached
About Me

Highlighted technical skills include: SharePoint 2019-2003 versions, Office 365, Linux, Video production, Multimedia applications and Microsoft Office.

Interests
IT Project Management
Favorite Forums
Favorite Tags
Member Avatar for koneill

I current have this .cgi which is used to display to a user the products they've selected for purchase.   I am wondering what is the best and most efficient way to obtain this scenerio:   Right now if someone purchases the first motor it is $18 and that displays …

0
222
Member Avatar for koneill

All, Using the standard ac_quicktime.js as shown below - how does one get the video to auto play and then also keep looping: <script language="JavaScript" src="ac_quicktime.js" type="text/JavaScript"></script> <script> function jumpToTime(timeInSecs) { try { var vid = document.getElementById("iaatt_video"); if (vid && ('VIDEO' == vid.tagName) && vid.currentTime) { // video tag, use …

Member Avatar for rproffitt
0
438
Member Avatar for koneill

With the following Jquery - I am trying to default the value of a select to Publication Date: <script> $('[name=form-control] option').filter(function() { return ($(this).text() == 'Publication Date'); }).prop('selected', true); </script> Here is the select code - I'm trying to default to another value: `<select class="form-control" data-bind="options: filterParams.sort , optionsText: 'name', …

Member Avatar for vsmash
0
317
Member Avatar for koneill

All in the following code snippet - I have this code working without syntax error if a user accesses the page directly they get the message listed in the else statement "This page cannot be accessed directly " - and when the user accesses the page from a post method …

Member Avatar for The Diamonds
0
302
Member Avatar for koneill

All, I am trying to a call a fly program which generates dynamic images on a webpage and I'm geting this error -> malformed header from script. Bad header=/usr/home/gump/bin/fly: The main code is as such and I've tried various varaitions of the Content-Type headers to no avail - the simple-lib.pl …

Member Avatar for Geoff_3
0
1K
Member Avatar for koneill

My ISP - upgraded the Apache servers and in doing so - the CGI/Perl script below that worked before since they didn't require use strict now does not - since I uncommented out the use strict - I'm getting two errors - at first I was getting: Global symbol "@allgifs" …

Member Avatar for koneill
0
550
Member Avatar for koneill

All, In the code snippet below - I am trying to only send an e-mail if the page is reached via a POST request - the if statement is not being recognized in the CGI code - as when I access the page this is on directly - I get …

Member Avatar for koneill
0
353
Member Avatar for koneill

All, I'm looking for the best practice in regard to a CGI shopping cart - I am working on. What happens is that I have a checkout file that sends an email to our generic mail account and shows a thank you image once someone fills in their information. What …

Member Avatar for koneill
0
388
Member Avatar for koneill

In the following javascript/html - I'm trying to validate two items: 1) That if a user doesn't select a payment type - they are prompted to do so 2) That if Visa and Mastercard are selected and if the number or expire date is blank - they are prompted to …

Member Avatar for vsmash
0
297
Member Avatar for koneill

All, I'm trying to validate using JavaScript some form fields - so that if the Visa or Mastercard radio buttons are clicked - then the card number or expire date must also be filled in - what would be the recommended approach for this: JavaScript code: <script type="text/javascript"> function paymentCheck(){ …

Member Avatar for vsmash
0
1K
Member Avatar for koneill

All, I have a packaged app - whose snippet is below and the form that displays shows ascending date (ascendingSort) and Title as the default items - I'd like to show the Publication Date (availableDate) and the descending date (descendingSort) as the two defaults - how in either Jquery or …

Member Avatar for Phaelax
0
340
Member Avatar for koneill

All, I have a odd scenerio which I'm looking to resolve - what is the best way in CGI/PERL to detect the referring page - as depending on if the referring page is from http://www.mysites.com/wholesale - I need to display a button on the page that when clicked will be …

Member Avatar for koneill
0
413
Member Avatar for koneill

All, I have a .mov file and am wondering what is the best way to have this autoplay so that users don't have to hit the play button while viewing on a IPhone device. I tried utilizing the ac_quicktime.js script as such (I went to the ac_quicktime.js - a few …

Member Avatar for rproffitt
0
599
Member Avatar for koneill

All, I'm trying to call in my first dyanmic JavaScript function OpenDynamicPic the BreedVideoOpen(videopath) function so that the dynakic image appears on the left and a video appear on the right - however I seem to be getting the BreedVideoOpen functions output keeps appearing in the top left of my …

Member Avatar for Akash_Soni
0
263
Member Avatar for koneill

All, I have one question and one issue with my below php email script - the script currently has the two images side by side when displayed in the e-mail - I'd like the CSS z-index values as well as the transformation to be picked up in the HTML e-mail …

Member Avatar for koneill
0
297
Member Avatar for koneill

All, I'm trying to pass a hidden value into my php mail script - the img1 isn't displaying - in the e-mail it's coming across with just http://www.mysite.com/custom_clock/sills/ and not the img1 value The html form is here: <form name="customemail" action="mail.php" onsubmit="return SubMail_Validator(this)" method="POST"> <b>E-mail</b><br/> <input type="text" name="from" size="25"><br> <input …

Member Avatar for koneill
0
331
Member Avatar for koneill

All, I have an external JavaScript code - which basicially has functionality so that different images are shown when a next or previous button is selected. What I need to do and know is how to pass the value of the image to the querystring as I need to use …

Member Avatar for LesF
0
802
Member Avatar for koneill

All, I'm trying to obtain the values from an external JavaScript using PHP - In my index.php page I'm trying to obtain the value being passed in as such: `<input type="hidden" name="imgSrcOrig" id="imgSrcOrig" value="<?php echo $_REQUEST['remote_sill']; ?>"/>`` However - in the JavaScript I need to pass into the hidden field …

Member Avatar for koneill
0
399
Member Avatar for koneill

In PHP - I'm trying to pass a second item &show_sill via the URL string and keep getting this error: - Parse error: syntax error, unexpected '&' what is the correct syntax when trying to utilize mutliple items via the querystring: header("Location: submit.php?upload_message=image uploaded&upload_message_type=success&show_image=".$_FILES["image_upload_box"]["name"]&show_sill=".$_FILES["imgOrgSrc"]["name"]); exit;

Member Avatar for koneill
0
169
Member Avatar for koneill

Right now I have my two CSS elements as such - using z-index and I would like to be able to click a button and have these images as they appear on the page with their z-index e-mailed to me. I have all these items wrapped in a div tag …

Member Avatar for rtrethewey
0
134
Member Avatar for koneill

I have some code that allows one to move an image by clicking links (move left, move right etc) - the code works in IE but not in Google Chrome - therefore I have added to the JavaScript a check for this via g = (document.getElementById) ? 1 : 0; …

Member Avatar for koneill
0
371
Member Avatar for koneill

I'm trying to send an e-mail using the PHP mail function and having two issues in regard to the below code: 1) When I get the e-mail - it is not formatted in HTML - instead I get just the actual HTML code in the e-mail - I get all …

Member Avatar for koneill
0
203
Member Avatar for koneill

I'm calling a simple e-mail validator in JavaScript as the below shows - this works fine as I'm calling it in my HTMl form as such: <form name="email" action="mail.php" onsubmit="return SubMail_Validator(this)" method="POST"> Then this code does the validation that an e-mail has been entered - however - I need the …

Member Avatar for koneill
0
860
Member Avatar for koneill

All, I am trying to use opacity to have one image on the page behind another image. The below code creates the opacity for the image in the div - but the other image doesn't display. Therefore, I'm wondering how this can be done as I have a few small …

Member Avatar for mattster
0
103
Member Avatar for koneill

All, I'm wondering if their is a way to use the CSS clip to place my image propational within another image. In this case - I am giving users the ability to upload their own image: As an example - this URL shows the uploaded image: http://www.pinkcloud.com/custom_clock/submit.php?upload_message=image uploaded&upload_message_type=success&show_image=kmo_mikeg.jpg Here are …

Member Avatar for mattster
0
338