每当页面刷新时,如何在文本框中循环数字?用PHP
<input type="text" name="name1" value="loophere">
每当我刷新页面时,我希望文本框自动具有值编号。 我需要将它用于我的数据库中的列,我自动想要它。我的数据库中已经有一列auto_increment。非常感谢。
答案 0 :(得分:0)
使用export default class CanvasElement extends React.Component {
constructor(props) {
super(props);
this.renderCanvas = this.renderCanvas.bind(this);
}
componentDidMount() {
this.canvas.width = 220;
this.canvas.height = 50;
this.ctx = this.canvas.getContext('2d');
this.renderCanvas();
}
renderCanvas() {
this.ctx.fillStyle = `hsla(${this.props.hue}, 100%, 90%, 0.5)`;
this.ctx.fillRect(0, 0, 220, 50);
this.props.updateHue(this.props.hue);
requestAnimationFrame(this.renderCanvas);
}
render() {
return (
<div>
<canvas ref={canvas => {this.canvas = canvas;}} height='50' width='220' />
</div>
);
}
}
this.props.hue
http://php.net/manual/en/function.rand.php
或使用rand()
<input type="text" name="name1" value="<?php echo "1".rand();?>">