/    Sign up×
Community /Pin to ProfileBookmark

php with javascript and jquery passing multiple parameters

echo ‘ <tr class=”‘.$odd_or_even.'” onclick=”javascript:getselopr(”.$opr_operator_name.’,’.$opr_id.”)”>’.PHP_EOL;

i want to pass 2 parameters into a function in another php page
function getselopr(operatorname,oprid){
$( “#dialog-operator” ).dialog( “close” );
alert(operatorname+ ” & ” + oprid);

if i only pas one parameter de operator name it wnets ok, but as soon as i pass 2 parameters it goes wrong: it says oprid is undefined.
can anyone help me with this

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@NogDogNov 05.2014 — Looks like the quoting is off. The JavaScript parser will see both arguments as a single, comma-separated argument the way you typed it. I'd recommend using the following quoting style to make it a bit easier to see/fix:
[code=php]
echo "<tr class='$odd_or_even' onclick='javascript:getselopr("$opr_operator_name", "$opr_id")'>".PHP_EOL;
[/code]
Copy linkTweet thisAlerts:
@zorifauthorNov 05.2014 — got the right answer:

echo ' <tr class="'.$odd_or_even.'" onclick="javascript:getselopr(''.$opr_operator_name.'','.$opr_id.')">'.PHP_EOL;

thanks!
×

Success!

Help @zorif spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.10,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...