Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Arguments in PHP include?

Featured Replies

Is it possible to pass an argument to a PHP script using include?

 

<html>
<body>
   <?php include 'script.php' ?>
</body>
</html>

Let's say that script.php looks like this:

<?php echo 'Hello world!' ?>

 

This will result with "Hello world!" being shown on the screen, but is it possible to decide from outside of the script what it should show?

 

<html>
<body>
   <?php include 'script.php' 'Hello world!' ?>
   <?php include 'script.php' 'LOL!' ?>
   <?php include 'script.php' 'Bye' ?>
</body
</html>

And in script.php:

<?php echo (argument here) ?>

 

This is of course a very simple example, but imagine if the script.php is extremely big and it has to act slightly different for every page, then this would be very useful. Is it even possible?

 

And yes, I'm a noob at PHP.

Edited by Davve

uhm, its possible this way:

 

$var = 'ass';

include 'xxx.php';

 

and in xxx.php:

 

echo $ass;

 

in php the included script is the same scope as the invoker scritp it means that all variables from the current scope are visible.

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.