たとえば、javascript の場合: 1
<script>
var name = "<?php echo 'Adam'; ?>";
alert("The name is: " + name);
</script>
または2
<script>
alert("The name is: <?php echo 'Adam'; ?>");
</script>
そしてhtmlで?1
<head>
<?php echo '<title>Page #1</title>'; ?>
</head>
または2
<?php $page_number = "1"; ?> // on top of the script with the rest of the other X code. //
<!doctype html....
<html>
<head>
<title>Page #<?php echo $page_number; ?></title>
</head>
短い、長い、簡単、または難しい方法を探しているのではなく、これを行うための正しい方法を探しています。
1 - 専門的な方法で、これをどのように行うべきですか?
2 - これを行う方法/方法は何ですか?
ありがとう
更新:また:
<input type="button" onclick="javascript:add_friend(0,<?php echo $profile_user_id; ?>);" />