<?php
$stack = array('first', 'second', 'third', 'fourth', 'fifth');
foreach($stack as $v){
if($v == 'second') {
continue;
}
echo $v.'<br>';
}
/*
first
third
fourth
fifth
*/
?>
Tips, código fuente, ayudas y orientaciones en código y herramientas de programación... tan solo para ahorrar un poco de tiempo luego de las largas horas que luché en encontrar estas soluciones. :) #Traveler #Developer #ArtificialIntelligence #AI #DeepLearning #InteligenciaArtificial #Criptomonedas #Cryptocurrency #Blockchain
<?php
$stack = array('first', 'second', 'third', 'fourth', 'fifth');
foreach($stack as $v){
if($v == 'second') {
continue;
}
echo $v.'<br>';
}
/*
first
third
fourth
fifth
*/
?>
$.ajax({
url: 'users.php',
dataType: 'json',
type: 'post',
contentType: 'application/json',
data: JSON.stringify( { "first-name": $('#first-name').val(), "last-name": $('#last-name').val() } ),
processData: false,
success: function( data, textStatus, jQxhr ){
$('#response pre').html( JSON.stringify( data ) );
},
error: function( jqXhr, textStatus, errorThrown ){
console.log( errorThrown );
}
});
<script>
//regex expression:
var reg_name_lastname = /^[a-zA-Z\s]*$/;
//Validation to the user_name input field
if(!reg_name_lastname.test($('#user_name').val())){ //
alert("Correct your First Name: only letters and spaces.");
valid = false;
}
</script>
Usar la librería: jsPDF
Usar en el HTML cualquier div de donde vamos a gerar el PDF:
<div id="content">
<h3>Hello, this is a H3 tag</h3>
<p>A paragraph</p>
</div>
<div id="editor"></div>
<button id="cmd">generate PDF</button>
Y el JavaScript:
var doc = new jsPDF();
var specialElementHandlers = {
'#editor': function (element, renderer) {
return true;
}
};
$('#cmd').click(function () {
doc.fromHTML($('#content').html(), 15, 15, {
'width': 170,
'elementHandlers': specialElementHandlers
});
doc.save('sample-file.pdf');
});
En más de 40 años de experiencia como programador y director de proyectos de programación, he aprendido que cada requerimiento tiene mejores...