Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
67% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #3K
~24.0K People Reached
Favorite Forums
Member Avatar for cjay175

Hi, Just looking for a quick hand in a question. I am using jquery validator for a form and some dynamic fields I am trying to have some fields required only if 2 conditions have been might, a select box selected and a radio button checked... Here is the code …

Member Avatar for weblike
0
3K
Member Avatar for cjay175

Hey, I was wondering if someone could help me with this. I want to, when an anchor link is clicked, the id of the link is grabbed by jquery then passed to a function. The id is would be the same as the id of the div that is used …

Member Avatar for efadfsfasdf
0
5K
Member Avatar for cjay175

Hi all, I am trying to select multiple rows from the database and then separate the rows into array values so I can use them throughout my code. This is what I have right now... [CODE] $result = mysql_query("SELECT url, image, placement FROM advert WHERE user='1'") or die(mysql_error()); //This grabs …

Member Avatar for metalix
0
5K
Member Avatar for botak75

anyone can help me how to make coding like below. IF husband(L3) does not have a son (L1) AND do not have a daughter (P1) AND do not have the grandson of the son (L4) AND do not have a granddaughter from son (P4) THEN breakdown for men is 1 …

Member Avatar for diafol
0
80
Member Avatar for cjay175

Hi all, I am at a stand still with trying to figure this out. I have a textarea, i would like to check for links entered by users and replace/remove the anchor attribute from the string. ie. change [ICODE]<a href='google.com'>website</a>[/ICODE] to [ICODE]website[/ICODE] its more so to validate ( i have …

Member Avatar for cjay175
0
88
Member Avatar for cjay175

Using Wordpress with update_user_meta and php array. Had a quick question regarding dynamic input fields and posting it to php. [CODE] <input type="text" name="test[]" /> [/CODE] These fields get added dynamically as well using jquery which works fine, the issue im having is posting the array individually. To save this …

Member Avatar for cjay175
0
101
Member Avatar for cjay175

I wasw ondering if someone could help me out with attaching multiple files to an email using uploadify and contact form. So far I have the file locations and names put into an array [CODE]<input type="hidden" name="file_name[]" value="/uploads/'+response+'" />[/CODE] How would I attach these files to an email through php. …

0
83
Member Avatar for cjay175

Hi all, I am having an issue with a php script that has worked fine in php 5.2.0 but with an upgrade to php 5.3 it is only prtly working. From what I understand ereg has been depreciated so I have tried many variations of trim() and preg_match() to remove …

0
49
Member Avatar for cjay175

What I would like to do is have 2 buttons to submit a single form. One button is to save the form for editing later the other is to process it. With... [CODE]$("#saveform_ns").click(function(){ $('form#form_main').attr({action:"http://path/to/save.php"}); $('form#form_main').submit(); })[/CODE] I can get the submit button to work and the above button to work. …

Member Avatar for cjay175
0
633
Member Avatar for CreativeCoding

I am trying to create an upload system for my website. I want it to display the size of the file as well as the percentage the file takes up of 1GB (example: 512MB would be %50 because 512 is 0.5GB). The way I chose to do this is to …

Member Avatar for CreativeCoding
0
288
Member Avatar for cjay175

Hi all, I am having quite some trouble with doing a certain task in php that im sure someone would know how to do it. To start, I want to have my script create a table for every 12 keys in an array. Here is the beginning of the code: …

Member Avatar for cjay175
0
80
Member Avatar for RichmondJim

I'd like to create a simple PHP form that will allow my website user to make a payment on their account with us using PayPal. I'd like them to enter their name, email address, account number, and the amount they'd like to pay. I would then like to pass this …

Member Avatar for RichmondJim
0
151
Member Avatar for cjay175

Hi there, I am in need of help, I would like to know how to create a link that when clicked it will change the order a list is displayed. Specifically in wordpress when using a codex to display posts. [B]How would I create a link or dropmenu that can …

Member Avatar for yahyaayob
0
366
Member Avatar for cjay175

Hey everyone, I just got a solution from here, but I think I spoke to soon, as I ran into another problem right away. I have been playing around with it for a couple days now, and just hoping that someone could explain or see why it isn't working. I …

Member Avatar for cjay175
0
597
Member Avatar for cjay175

Hi there, I am having some issues with getting a variable from an onclick event with javascript. [CODE] $('#preview_logo').append('<img src="'+fileObj.filePath+'" height="100px" hspace="5" /> '+fileObj.name+' uploaded.<a href="javascript:;" id="dele_image" onclick="del_image('+fileObj.filePath+','+fileObj.name+');">Upload Different Image</a><br>');[/CODE] This is for uploadify script for previewing an image that is uploaded, it creates the link fine, but won't trigger …

Member Avatar for Airshow
0
6K
Member Avatar for cjay175

Hey, I have, what I think is an easy situation to solve. I am trying to have variables dynamically written to html depending whether a checkbox is ticked. This is what I have right now - if someone might also know the proper way to write this it would be …

Member Avatar for cjay175
0
95
Member Avatar for cjay175

Hi there I'm trying to use jquery to load some content on a page but cannot seem to find anything through google. I have about 10 checkboxes, once 4 are selected I want to get their ids, than load 4 divs with textareas depending on the ids of the checked …

0
74
Member Avatar for cjay175

Hey, Im wondering if someone could tell me how to set a variable depending on the link that is clicked than pass it to php. It's for a rating plugin - The links will be numbers 1 - 5 and need to pass the integer to php when clicked.. in …

Member Avatar for Thirusha
0
82
Member Avatar for cjay175

Hey, I was wondering how to obtain a hash value and pass it to php. URL: [CODE]http://www.mydomain.com/#id=110[/CODE] All I want to grab is just the "110". This is my javascript code: [CODE] <script> function getUrlVars() { var vars = [], hash; var hashes = window.location.href.slice(window.location.href.indexOf('#') + 1).split('&'); for(var i = …

Member Avatar for Airshow
0
1K
Member Avatar for cjay175

hi all, I am wondering if someone could give me a quick hand with some php im trying to edit in Wordpress. Heres the original peice I am trying to edit: [CODE] <div class='dateauthor'> <small class='capsule'><?php the_time('F jS, Y') ?> by <?php the_author() ?> </small> </div>[/CODE] What I want to …

Member Avatar for Wickedself
0
123
Member Avatar for cjay175

hi all, I am wondering if someone could give me a quick hand with some php im trying to edit in Wordpress. Heres the original peice I am trying to edit: [CODE] <div class='dateauthor'> <small class='capsule'><?php the_time('F jS, Y') ?> by <?php the_author() ?> </small> </div>[/CODE] What I want to …

Member Avatar for cjay175
0
214
Member Avatar for cjay175

Hi all, Thanks for any help anyone could give. I am using Jscrollpane to customize my scroll bars. I have the plugin working but what I am wondering is how to implement scrollBy function to scroll by paragraphs. This is what I currently have: Head section script: [CODE] <script type="text/javascript"> …

0
52
Member Avatar for cjay175

Hi there all, I want to grab information from an url with anchors and I suppose this can't be done with php, as ive been told and that it would have to be done with javascript. I am wondering if anyone knows the code to grab the url and anchor …

Member Avatar for cjay175
0
460
Member Avatar for cjay175

Hey all, Just had a quick question (hopefully Im in the right area). Does anyone know where I can find something like a video directory script? I have used phpmotion in the past, but I would like a script that is more like wtso, xepisodes, or family-guy-online(org). What I want …

-1
93