Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6932443
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:42:24+00:00 2026-05-27T11:42:24+00:00

$message doesn’t seem to be displaying anything. I have the following code: <?php $files

  • 0

$message doesn’t seem to be displaying anything.

I have the following code:

<?php
$files = glob("testimonials/*.txt");
$filename = $files[rand(0, count($files)-1)];
$lines = file($filename);
$author = array_shift($lines);
$message = explode("", $lines);
?>

<h1>Testimonial</h1>
<p><b>Author:</b> <?php echo $author; ?></p>
<?php echo $message; ?>

In my testimonials folder, I have text files with author name one the first line, then the message on the lines directly under that.

What am I missing here to make this work correctly?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T11:42:25+00:00Added an answer on May 27, 2026 at 11:42 am

    Try This:

    <?php
    $files = glob("testimonials/*.txt");
                     //mt_rand is more random
    $filename = $files[mt_rand(0, count($files)-1)];
    
    $lines = file($filename);
    //Get authors name
    $author=$lines[0];
    /*Glue the whole $lines array into a string & remove the author,
      so whats left is just the message*/
    $message=str_replace($author,'',implode(' ',$lines));
    ?>
    
    <h1>Testimonial</h1>
    <p><b>Author:</b> <?php echo $author; ?></p>
    <?php echo $message; ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form validator and when it fails, the error message doesn't show.
I'm using the following php if statement as part of my code if ($_SESSION['username'])
Seems like cuke doesn't show the full error message (at least when problem occurs
I'm creating an email message using CDO object (and VB6, but that doesn't really
What does the following error message mean? cannot override a concrete member without a
Does anyone know what this error message means? FATAL: Code generation error detected during
I have simple front controller plugin which contains this code: http://pastebin.com/m155c59b0 When session expire
Can't understand why hooks don't work. I have the following model: class DirItem include
I have an issue with message rendering for dataTable with dynamic columns. I want
I have a php / ajax / javascript form that I am trying to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.