$d = 'keys/old';
$dir = opendir($d);
$count = 0;
while($file = readdir($dir)){
if($file == '.' || $file == '..' || is_dir($d . $file)){
continue;
}
$count++;
}
$oldDir = 'keys/old';
$newDir = 'keys';
$files = array_slice(scandir($oldDir), 2);
$keys = [];
foreach ($files as $file) {
$keys = array_merge($keys, explode("\n",file_get_contents($oldDir.'/'.$file)));
}
$keyChunks = array_chunk($keys, $count);
$fk = fopen("keys/keys.txt", "w+");
foreach ($keyChunks as $key=>$chunk) {
array_push($chunk, "\n");
fwrite($fk, implode("\n",$chunk));
}
$(document).ready(function(){
$("#p_input").keyup(function(){
$.post("func/p_login.php",{ p_input:$(this).val() } ,function(data){
if(data=='no'){
$("#p_success").fadeTo(200,1,function(){
$(this).addClass('glyphicon-remove');
$(this).removeClass('glyphicon-ok');
$("#p_form").addClass('has-error');
$("#button_s").addClass('disabled');
$("#p_form").removeClass('has-success');
});
}else{
$("#p_success").fadeTo(200,1,function(){
$(this).addClass('glyphicon-ok');
$(this).removeClass('glyphicon-remove');
$("#button_s").removeClass('disabled');
$("#p_form").addClass('has-success');
$("#p_form").removeClass('has-error');
});
}});
});
});
<?PHP
if( substr(($_POST["p_input"]),0,1) != "P" ) {
echo "no";
}else{
if(!ereg("^[0-9]{7,8}$", substr(($_POST["p_input"]),1))){
echo "no";
}else{
echo "yes";
}
}
?>
$(document).ready(function(){
$("#p_input").keyup(function(){
var p_input = $("#p_input").val();
if(p_input.match(/^P[0-9]{7,8}$/) != null){
$("#p_success").fadeTo(200,1,function(){
$(this).addClass('glyphicon-ok');
$(this).removeClass('glyphicon-remove');
$("#p_form").addClass('has-success');
$("#p_form").removeClass('has-error');
});
}else{
$("#p_success").fadeTo(200,1,function(){
$(this).addClass('glyphicon-remove');
$(this).removeClass('glyphicon-ok');
$("#p_form").addClass('has-error');
$("#p_form").removeClass('has-success');
});
}});
});
$i = 1;
do {
$db->Query("SELECT * FROM user_points WHERE id = '$i'");
$pdata = $db->FetchArray();
*тут обрабатываем, что мне надо и, учитывая id строк, меняем записи*
$i++;
} while ($pdata["id"] > 0);
get_the_post_thumbnail()
, но где она находится не написано.the_permalink()
(как там оказалась ссылка, найдёте сами)url_img
<?php
$custom_fields = get_post_custom($post_id);
$my_custom_field = $custom_fields['url_img']; //'url_img' - название произвольного поля
foreach ( $my_custom_field as $key => $my_url ); //$my_url - то, что вы ввели в произвольном поле
the_permalink()
на echo $my_url;
the_permalink()
лучше сделать target="_blank"
, чтобы ссылка открывалась в новом окне. Например, <a href="<?php echo $my_url; ?>" target="_blank">