Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 40
Search took 0.15 seconds.
Search: Posts Made By: phillypro
Forum: PHP 06-17-2012, 11:03 PM
Replies: 4
Views: 423
Posted By phillypro
omg i had this idea....simply to use global...

omg i had this idea....simply to use global inside the function....and it worked...im such an idiot

why didnt i think of that smh
Forum: PHP 06-17-2012, 03:20 AM
Replies: 4
Views: 423
Posted By phillypro
Wordpress....passing variable into function

using this filter (filter is a method that adds a function into an area of wordpress)

add_filter( 'posts_where', 'filter_where' );

$thisdate = the_date(Y-m-d,'','',false);

function...
Forum: PHP 05-21-2012, 03:05 PM
Replies: 2
Views: 283
Posted By phillypro
Variables keep printing out while i define them

im trying to define 4 variables

then use them in my script at certain areas


the problem is...

simply defining them makes them print out ...ive tried everything....using ob_start functions...
Forum: JavaScript programming 08-05-2011, 08:39 PM
Replies: 9
Views: 890
Posted By phillypro
see i new that method putting it at the end...

see i new that method

putting it at the end of the defined function

only problem is i plan on having 3 menu links

and when one is clicked...i wanna run the hiding functions on the other...
Forum: JavaScript programming 08-05-2011, 08:11 PM
Replies: 9
Views: 890
Posted By phillypro
im a visual person one example ....of how to...

im a visual person

one example ....of how to have the functions run after each other would help

because with the exampel you guys gave both functions run at the same time
Forum: JavaScript programming 08-05-2011, 06:52 PM
Replies: 9
Views: 890
Posted By phillypro
ahhhhh i see now...i get it so lets say i...

ahhhhh i see now...i get it

so lets say i want to run the 2 functions

but not start one until the first is finished

do i write the callback like this
Forum: JavaScript programming 08-05-2011, 04:52 PM
Replies: 9
Views: 890
Posted By phillypro
thanks for the speedy response....but i get a...

thanks for the speedy response....but i get a syntax error trying that



jQuery(document).ready( function() {
jQuery('#ladiesmenu').click(
previewoff();
);

});
Forum: JavaScript programming 08-05-2011, 08:30 AM
Replies: 9
Views: 890
Posted By phillypro
How can i run two functions...one after the other

im no jQuery rookie

but for the first time ...instead of simply writing out the animation

jQuery('element').hide()

in that way.... i instead needed to keep track of the functions so i wrote...
Forum: PHP 03-25-2011, 05:31 PM
Replies: 4
Views: 299
Posted By phillypro
HEY ADBURAOOFT you are a genius ....thank you...

HEY ADBURAOOFT you are a genius ....thank you so much bro
Forum: PHP 03-25-2011, 04:35 PM
Replies: 4
Views: 299
Posted By phillypro
For Each to check for matches of value in While Loop

Basically i have names stored in one table ....and im running a while loop to run a function using them. Before the function is run im trying to use an IF statement to check if the name is already...
Forum: PHP 03-25-2011, 06:04 AM
Replies: 3
Views: 867
Posted By phillypro
thats more of the code up top that i...

thats more of the code up top that i wrote.....$thedb contains a field called names and it has names in it...simple :)
Forum: PHP 03-25-2011, 06:03 AM
Replies: 3
Views: 867
Posted By phillypro
edited the original post to add the code

edited the original post to add the code
Forum: PHP 03-25-2011, 05:52 AM
Replies: 3
Views: 867
Posted By phillypro
IF statement check if value from table matches values from another table

Basically i have names stored in one table ....and im running a while loop to run a function using them. Before the function is run im trying to use an IF statement to check if the name is already...
Forum: PHP 03-11-2011, 02:10 AM
Replies: 12
Views: 1,462
Posted By phillypro
because certain actions need 5 seconds or so...

because certain actions need 5 seconds or so inbetween to look realistic...you dont wanna flood something in milliseconds
Forum: PHP 03-11-2011, 02:03 AM
Replies: 12
Views: 1,462
Posted By phillypro
<?php require_once('inc/twitterOAuth.php'); ...

<?php
require_once('inc/twitterOAuth.php');
require_once('inc/tmhOAuth.php');
require_once('connector.php');





$result = mysql_query("SELECT * FROM twitter");
Forum: PHP 03-11-2011, 01:59 AM
Replies: 12
Views: 1,462
Posted By phillypro
Sorry i was so unclear fellas basically ...

Sorry i was so unclear fellas

basically

I have a database....full of names

i load all the rows of the table and define it as a variable

then i use the while loop to run commands on each...
Forum: PHP 03-11-2011, 12:53 AM
Replies: 12
Views: 1,462
Posted By phillypro
Limit While Loop

<?php

while($row = mysql_fetch_array($result))
{

$tmhOAuth = new tmhOAuth(array(
'consumer_key' => $theconkeys['conkey'],
'consumer_secret' => $theconkeys['consecret'],
...
Forum: PHP 02-10-2011, 05:57 AM
Replies: 1
Views: 744
Posted By phillypro
Twitter Followers

basically i have a code that returns a response with a list of twitter id's for everyone following a specified user

this code below

$tmhOAuth->request('GET', $tmhOAuth->url('followers/ids'),...
Forum: JavaScript programming 02-01-2011, 12:37 AM
Replies: 5
Views: 1,005
Posted By phillypro
the css actually works pretty well....but...

the css actually works pretty well....but everytime you change the css file...you must put a ?2 or ?3

for every change jus go up a a number....put that question mark and number at the end of...
Forum: JavaScript programming 01-31-2011, 10:07 AM
Replies: 5
Views: 1,005
Posted By phillypro
i struggled with that too.... its hard...

i struggled with that too....

its hard because facebooks own explanation is outdated and lacking a very important part

there is a file called xd.reciever or something like that ...that is...
Forum: JavaScript programming 01-31-2011, 05:15 AM
Replies: 0
Views: 377
Posted By phillypro
Add a param to all Embedded Flash

basically...i have a popup overlay that keeps gettin covered by the flash videos my friend embeds all over the website

this is easily avoided using addParam('wmode', 'transparent','true');

...
Forum: PHP 01-01-2011, 11:59 AM
Replies: 1
Views: 397
Posted By phillypro
Warning: mysql_fetch_array(): supplied argument is not a valid...

after running my mysql database connection php lines successfully

under it i put a little test code...a simple echo of some values in a row

but i get an error when i navigate to the page...the...
Forum: PHP 01-01-2011, 10:51 AM
Replies: 2
Views: 315
Posted By phillypro
using SELECT to get 2 columns from a table

the line im struggling with is

$result = mysql_query( " SELECT * FROM `jos_names` LIMIT $offset, 1 " );

i dont know if i wrote that right....

im trying to grab 2 columns from a table and...
Forum: PHP 01-01-2011, 09:04 AM
Replies: 1
Views: 299
Posted By phillypro
Run Function on one Table row then move to the next

i have a table for example lets call it my_table

and it has 2 specific fields in each row i want to load lets call the two fields

name
data

after my function runs using the two fields...
Forum: JavaScript programming 12-29-2010, 02:21 PM
Replies: 1
Views: 927
Posted By phillypro
Checkbox color change...and back

im trying to figure out a script

that when someone clicks my checkbox (or onchange/onclick events the span tag that wraps it) it changes the color of the font in the span tag...

but then if...
Showing results 1 to 25 of 40

 
Forum Jump

All times are GMT +1. The time now is 06:12 AM.