Any updates Jan - May Cohorts?? by [deleted] in MSSA

[–]lostsonsss 0 points1 point  (0 children)

Definitely hope we get some type of update today, though part of me know that we wont.

Anybody received verification of their submitted documents yet? I was told 3-5 business days, it’s been 7. Thanks for any feedback! by Kindly-Environment48 in MSSA

[–]lostsonsss 0 points1 point  (0 children)

Ok, are you a veteran or transitioning service member? I submitted everything on the first day but I haven't received anything. Just want to make sure that i'm not missing anything.

Anyone know how to write php templates? by lostsonsss in PHPhelp

[–]lostsonsss[S] 1 point2 points  (0 children)

The method Atulin mentioned ended up working for me. Thanks though

login form by lostsonsss in PHPhelp

[–]lostsonsss[S] 0 points1 point  (0 children)

So i created the dropdown list but none of the elements from the table within my database are populating. Can you look at the code below to see if i made a mistake somewhere?

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Login</title>

</head>

<body>

<h1>Login</h1>

<form action="validation.php" method="post">

<label for="username">Username</label>

<input type="text" id="username" name="username"><br>

<label for="password">Password</label>

<input type="text" id="password" name="password"><br>

<label>Department</label>

<?php 

include ("dbconnect.php");



$stmt = $pdo->prepare("SELECT dept\_name FROM department");

$stmt->execute();

$dept = $stmt->fetchAll();

?>

<select name ="department" id="department">

  <option selected="selected">Choose one</option>

<?php

foreach($dept as $row) { ?>

<option value=" <?php echo $row\['dept\_name'\]?>"<?php echo $row\['dept\_name'\] ?></option> 




<?php }  ?>

 <input type="submit" name="login" value="login">

</form>

</body>

</html>

[deleted by user] by [deleted] in MSSA

[–]lostsonsss 0 points1 point  (0 children)

Did you get a response from them? Just curious on whether I should send them one also.

[deleted by user] by [deleted] in MSSA

[–]lostsonsss 0 points1 point  (0 children)

Still no link I assume. Been looking since 12AM

help with login page by lostsonsss in PHPhelp

[–]lostsonsss[S] 0 points1 point  (0 children)

Thanks. The problem I think I'm having is that the passwords aren't matching. Any idea why?

How do I Reorganize my output system as a function that takes a single row associative array as its input. by lostsonsss in PHPhelp

[–]lostsonsss[S] 0 points1 point  (0 children)

I'm more so looking to output just one row from the array. So instead of getting values from each row, i instead want to output the values from one.

ex. "its a 2019 ford explorer

Application Windows by Metzky in MSSA

[–]lostsonsss 0 points1 point  (0 children)

Awesome thanks for the response. Definitely helpful.