Quote Originally Posted by * Porsche_maniak * View Post
Lets say i have :

Code: 
1|2|3|4|5|6|7|8|9
a|b|c|d|e|f|g|h|i
How do i take the first value for each line. (1,a)
Not sure about this:

PHP Code: 
$lines file_get_contents("config/file.php");
$lines trim($lines);
$lines str_replace("\n",'|',$lines); // Saw there is a newline.. Replace it with a '|'.
$lines explode('|',$lines);

$numbers = array();
$letters = array();

foreach(
$lines as $char){
   if(!
is_numeric($char))
     
$letters[] = $char;
   else
     
$numbers[] = $char;
 }
unset(
$char,$lines);

if(!
$numbers[0])
  die(
'Couldnt find any numbers');
if(!
$letters[0])
  die(
'Couldnt find any letters');

$no_numbers count($numbers);
$no_letters count($letters);

if(
$no_numbers != $no_letters)
   die(
'BOOGIEDIBOOE');

for(
$i=0;$i<$no_numbers;$i++){
  echo 
'('.$numbers[$i].','.$letters[$i].')'); // Should echo "(1,a)"

Edit:

If you do it like litewarez

PHP Code: 
$lines file("config/file.php");

$letters explode('|',$lines[0]);
$numbers explode('|',$lines[1]);
unset(
$lines);

$no_letters count($letters);
for(
$i=0;$i<$no_letters;$i++){
  echo 
'('.$numbers[$i].','.$letters[$i].')');

Robin H Reviewed by Robin H on . HTML questions. Hi there ! My site has a stylesheet which is centering everything and looks okay. There are exceptions in centering which i manually fix and don't touch the css,but this time i have bigger problem. I have an input text fields.One is for subject,2nd for To,3rd is the Message. The Message field is the problem.It is 200px in height and the blink pointer is in the center (vertically),so i need it at the top.I tried stuff like vertical-align:top,padding:0 but it is still there.There's the Rating: 5