例如,在 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; ?>);" />