Стоит ли сейчас, вернуться к этим основам и общим темам как: Computer Fundamentals, Operation Systems, Data Structures and Algorithms, Networking, Compilers, DataBases, Software Engineering.
WHERE date > CURDATE()
. Для истекших записей соответственно WHERE date < CURDATE()
. Ну на край можно столбец isEnded добавить #include <algorithm> // for std::find
#include <iterator> // for std::begin, std::end
int main ()
{
int a[] = {3, 6, 8, 33};
int x = 8;
bool exists = std::find(std::begin(a), std::end(a), x) != std::end(a);
}
template<class InputIterator, class T>
InputIterator find (InputIterator first, InputIterator last, const T& val)
{
while (first!=last) {
if (*first==val) return first;
++first;
}
return last;
}
position: relative;
z-index: 3;
for(i = 1; i < 4; i++){
for(j = 1; j < 4; j++){
for(g = 1; g < 4; g++){
console.log(""+i+j+g);
}
}
}
echo
"<tr>
<td><p3></p3></td>
<td><a href='../doctor/files/",mysql_result($result,$i,file_name),"'>",mysql_result($result,$i,file_name),"</a></td>
<td>",mysql_result($result,$i,uploaded_on),"</td>
<td>",mysql_result($result,$i,username_add),"</td>
<td> <img src='http://chart.apis.google.com/chart?cht=qr&chs=150x150&chl=' . htmlentities(urlencode(mysql_result($result,$i,file_name)) . ''> </td>
</tr>";
echo "</table>";
$resulter = mysql_query("SELECT count(*) AS count FROM `tb_users` WHERE username = '$_POST['login']'");
$resultat = mysqli_fetch_assoc($resulter);
if ( $resultat['count'] > 0)
{
$errors[] = 'Такой Логин уже есть в системе!';
}